CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Threaded View

  1. #1
    Join Date
    May 2005
    Posts
    112

    C memory segmentation fault

    Hi,

    Im getting the following segmentation fault from some C code on x86
    Code:
    (gdb) bt full
    #0  0xfeb3487a in _malloc_unlocked () from /usr/lib/libc.so.1
    No symbol table info available.
    #1  0xfeb34704 in malloc () from /usr/lib/libc.so.1
    No symbol table info available.

    If I can rule out something wrong in the stack, then since this seg fault
    happens in memory management , then maybe its the heap that at fault.

    RESOLVED: it did turn out to be heap related.
    Last edited by Moore; June 23rd, 2011 at 03:35 AM. Reason: removing unecessary detail and marked as resolved.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured