|
Description
|
common/exec/aout/aout.c:334 casts from an integer type to caddr_t. The
standards do not specify whether this causes sign extension; unlike
Studio, gcc sign-extends and issues a warning. This can be fixed by
an intermediate cast to uintptr_t, which suppresses both the extension
and the warning.
[oss-bite-size]
|