forked from Imagelibrary/rtems
2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/malloc_boundary.c: Avoid implicit type cast (https://www.rtems.org/bugzilla/show_bug.cgi?id=1472#c1).
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2009-11-19 Ralf Corsépius <ralf.corsepius@rtems.org>
|
||||
|
||||
* libcsupport/src/malloc_boundary.c: Avoid implicit type cast
|
||||
(https://www.rtems.org/bugzilla/show_bug.cgi?id=1472#c1).
|
||||
|
||||
2009-11-18 Chris Johns <chrisj@rtems.org>
|
||||
|
||||
* libmisc/shell/main_getenv.c, libmisc/shell/main_setenv.c,
|
||||
|
||||
@@ -86,7 +86,7 @@ static void rtems_malloc_boundary_at_malloc(
|
||||
for (i = 0 ; i < CALLCHAINSIZE ; i++) {
|
||||
mp->callChain[i] = fp[1];
|
||||
nfp = (int *)(fp[0]);
|
||||
if((nfp <= fp) || (nfp > (int *)((intptr_t)1 << 24)))
|
||||
if((nfp <= fp) || (nfp > (int *)(INT32_C(0x1000000) /* 1 << 24 */)))
|
||||
break;
|
||||
fp = nfp;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user