Segmentation faults occur when accessing memory which does not belong to your process.
I am trying to understand why the following snippet of code is giving a segmentation fault: void tokenize(char* line) { …
c segmentation-fault strtokI am relatively new on C, I am trying to run a simple program and I get this Error message: …
c segmentation-fault printf coredumpDifference between a bus error and a segmentation fault? Can it happen that a program gives a seg fault and …
c segmentation-fault bus-error sigbusI've written a program that allocates a new object of the class T like this: T* obj = new T(tid); …
c++ segmentation-fault delete-operatorI have a multithreaded C program, which consistently generates a segmentation fault at a specific point in the program. When …
c debugging gdb segmentation-faultI'm getting a few SIGBUS (7) and SIGSEGV (11) crashes that I am having difficult tracking down. The thread that appears to …
java android segmentation-fault sigbusI've been getting increasing number of reports that my android app crashes, the crash happens in native code so a …
android segmentation-faultDoes a try-catch block catch segmentation fault errors? I am reading a text file using the function given below but …
c++ crash segmentation-faultI get a segmentation fault after freeing a certain pointer: free(studentDB->name); I can get its value without …
c free segmentation-faultI am creating a 2D game on Android using OpenGL. Currently I am testing and debugging the game on several …
android opengl-es libc segmentation-fault