You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In realloc_reuse.c, realloc'ed pointer is not stored, and the result would be always [-].
The source code should be like this?:
char *p = malloc_noinline(ALLOCATION_SIZE);
char *q = p;
p = realloc(p, 1024);
The text was updated successfully, but these errors were encountered:
In realloc_reuse.c, realloc'ed pointer is not stored, and the result would be always [-].
The source code should be like this?:
char *p = malloc_noinline(ALLOCATION_SIZE);
char *q = p;
p = realloc(p, 1024);
The text was updated successfully, but these errors were encountered: