Re: Segmentation fault need help
From: Måns Rullgård (mru_at_kth.se)
Date: 02/16/04
- Next message: Rich Grise: "Re: 192.168.0.0 into 2 subnets how"
- Previous message: Marcia Hon: "Segmentation fault need help"
- In reply to: Marcia Hon: "Segmentation fault need help"
- Next in thread: Paul Pluzhnikov: "Re: Segmentation fault need help"
- Reply: Paul Pluzhnikov: "Re: Segmentation fault need help"
- Reply: Marcia Hon: "Re: Segmentation fault need help"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Mon, 16 Feb 2004 00:38:35 +0100
"Marcia Hon" <honm@rogers.com> writes:
> Hi,
>
> I am trying to run a program except I get the following segmentation fault.
> I don't know how to solve it. Please if you know could you please help.
>
> Thanks, Marcia
>
> Program received signal SIGSEGV, Segmentation fault.
>
> 0x0a6e6962 in ?? ()
>
> (gdb) bt
>
> #0 0x0a6e6962 in ?? ()
>
> Cannot access memory at address 0xa6d6461
You have a corrupted stack. Look for buffer overflows in
automatically allocated memory. Another typical cause is freeing
automatic memory. It could also be caused by using an uninitialized
pointer. A memory debugger like Electric Fence or (for PC) valgrind
is useful for finding such bugs.
-- Måns Rullgård mru@kth.se
- Next message: Rich Grise: "Re: 192.168.0.0 into 2 subnets how"
- Previous message: Marcia Hon: "Segmentation fault need help"
- In reply to: Marcia Hon: "Segmentation fault need help"
- Next in thread: Paul Pluzhnikov: "Re: Segmentation fault need help"
- Reply: Paul Pluzhnikov: "Re: Segmentation fault need help"
- Reply: Marcia Hon: "Re: Segmentation fault need help"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|