Segmentation faults occur when accessing memory which does not belong to your process.
Here is the piece of code in which segmentation fault occurs (the perror is not being called): job = malloc(sizeof(…
c segmentation-fault malloc stack-overflow buffer-overflowI noticed there's not question with a list of common causes of segmentation faults in C++, so I thought I'd …
c++ segmentation-faultI am developing an app with the HERE SDK, and everything worked fine until now. I get errors like this …
android gson here-api segmentation-faultI have an iOS swift program that compiles and runs fine on Xcode Beta2. When I downloaded beta4, I got …
ios xcode segmentation-fault swiftI'm porting a C project from Linux to Windows. On Linux it is completely stable. On Windows, it's working well …
c windows segmentation-fault malloc portingMy application segfaults sometimes and mainly in malloc() and malloc_consolidate() when I look at the backtrace in gdb. I …
c++ debugging malloc segmentation-faultToday I faced an error due to which my Android application is getting by SIGNAL 11. This error usually occurs due …
android segmentation-faultI want a simple function that receives a string and returns an array of strings after some parsing. So, this …
c arrays pointers parameters segmentation-faultMy firefox started crashing since today. I haven't changed anything on the system or on firefox config. I use strace …
linux debugging trace dump segmentation-faultI'm trying to write a word to a file using this function: extern void write_int(FILE * out, int num) { …
c segmentation-fault fwrite