vote up 0 vote down star

What is SEGV_MAPERR, why does it always come up with SIGSEGV

flag

19% accept rate

1 Answer

vote up 3 vote down

It's a segmentation fault which happens during malloc. Most probably a dangling pointer issue, or some sort of buffer overflow.

SIGSSEGV is the signal that terminates it based on the issue, segmentation fault.

Check for dangling pointers as well as the overflow issue.

Enabling coredumps will help you determine the problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.