1
0
mirror of https://github.com/ioacademy-jikim/debugging synced 2025-06-06 23:46:15 +00:00
2015-12-13 22:34:58 +09:00

17 lines
187 B
C

#include <string.h>
#include <stdlib.h>
static void *rrr;
static void **p_rrr;
static void foo(void)
{
rrr = strdup("bbb");
rrr = ((char *)rrr)+1;
}
int main()
{
foo();
return 0;
}