>
>I have a program that fails on realloc. dbx reports:
>
>t...@1 (l...@1) signal SEGV (no mapping at the fault address) in t_splay at
>0xd078b710
>0xd078b710: t_splay+0x007e:    movl     %ebx,0x00000008(%eax)
>Current function is _eina_strbuf_resize
>  521      buffer = realloc(buf->buf, new_size);


Typically this indicates "memory corruption", specifically inside the
heap.

Use a debugging memory allocator such as watchmalloc, libumem, etc.

Casper
_______________________________________________
opensolaris-code mailing list
opensolaris-code@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to