Top "Segmentation-fault" questions

Segmentation faults occur when accessing memory which does not belong to your process.

What is a segmentation fault?

What is a segmentation fault? Is it different in C and C++? How are segmentation faults and dangling pointers related?

c++ c segmentation-fault
segmentation fault : 11

I'm having a problem with some program, I have searched about segmentation faults, by I don't understand them quite well, …

c segmentation-fault
What is a bus error?

What does the "bus error" message mean, and how does it differ from a segfault?

c unix segmentation-fault bus-error
Android Fatal signal 11 (SIGSEGV) at 0x636f7d89 (code=1). How can it be tracked down?

I've been reading the other posts on tracking down the reasons for getting a SIGSEGV in an Android app. I …

android android-ndk android-service segmentation-fault
Determine the line of code that causes a segmentation fault?

How does one determine where the mistake is in the code that causes a segmentation fault? Can my compiler (gcc) …

c++ c debugging segmentation-fault
What causes a Python segmentation fault?

I am implementing Kosaraju's Strong Connected Component(SCC) graph search algorithm in Python. The program runs great on small data …

python segmentation-fault large-data
Interpreting segfault messages

What is the correct interpretation of the following segfault messages? segfault at 10 ip 00007f9bebcca90d sp 00007fffb62705f0 error 4 …

linux qt webkit kernel segmentation-fault
Fixing Segmentation faults in C++

I am writing a cross-platform C++ program for Windows and Unix. On the Window side, the code will compile and …

c++ debugging segmentation-fault
What causes a SIGSEGV

I need to know the root cause of the segmentation fault (SIGSEGV), and how to handle it.

segmentation-fault
Returning pointer from a function

I am trying to return pointer from a function. But I am getting segmentation fault. Someone please tell what is …

c pointers segmentation-fault