Tagged Questions

Segmentation faults occur when accessing memory which does not belong to your process. They are typically the result of an incorrect use of pointers or a buffer overflow.

learn more… | top users | synonyms (1)

52
votes
12answers
5k views

Why is this RMagick call generating a segmentation fault?

I've been banging my head against the wall for the better part of an hour trying to figure out what's going wrong here, and I'm sure (or rather hoping) it's something fairly obvious that I'm ...
32
votes
3answers
851 views

segfault : interview question/C puzzle

I came across the following C puzzle: Q: Why does the following program segfault on IA-64, but work fine on IA-32? int main() { int* p; p = (int*)malloc(sizeof(int)); *p = 10; ...
21
votes
13answers
5k views

Why does simple C code receive segmentation fault?

The following code receives seg fault on line 2: char *str = "string"; str[0] = 'z'; printf("%s", str); While this works perfectly well: char str[] = "string"; str[0] = 'z'; ...
19
votes
1answer
579 views

OSX, ghci, dylib, what is the correct way?

I need to build some C code and then reference that C code via the FFI. I would like to use my binding from inside ghci on osx. On of my constraints is that I cannot just hand the C sources to ghc ...
17
votes
7answers
2k views

What is segmentation fault?

What is segmentation fault? Is it different in C and C++? How are segmentation fault and dangling pointer related?
16
votes
3answers
282 views

Why does an infinitely recursive function in PHP cause a segfault?

A hypothetical question for you all to chew on... I recently answered another question on SO where a PHP script was segfaulting, and it reminded me of something I have always wondered, so let's see ...
16
votes
3answers
6k views

How do you read a segfault kernel log message

This can be a very simple question, I'm am attempting to debug an application which generates the following segfault error in the kern.log kernel: myapp[15514]: segfault at 794ef0 ip 080513b sp ...
15
votes
2answers
557 views

Sun JVM (JRE jre1.6.0_24) segfault NET_Read

Our JVM crashes with segmentation fault from time to time in production with what feels like a race condition of some sort. Setups to reproduce: - JRE jre1.6.0_24 on Linux Ubuntu 9.10 and Debian 4.x ...
11
votes
3answers
426 views

Difference in behaviour (GCC and Visual C++)

Consider the following code. #include <stdio.h> #include <vector> #include <iostream> struct XYZ { int X,Y,Z; }; std::vector<XYZ> A; int rec(int idx) { int i = A.size(); ...
11
votes
8answers
1k views

Why is this C code causing a segmentation fault?

I am trying to write code to reverse a string in place (I'm just trying to get better at C programming and pointer manipulation), but I cannot figure out why I am getting a segmentation fault: int ...
10
votes
3answers
141 views

SIGSEGV in optimized version of code

My knowledge of the intel instruction set is a bit rusty. Can you tell me why I might be getting a segmentation fault in the optimized version of my function (bonus points if you can tell me why I ...
10
votes
3answers
382 views

Using C++ class in D

I am trying to find a way to use C++ classes in D. http://www.digitalmars.com/d/2.0/cpp_interface.html D cannot call C++ special member functions, and vice versa. These include constructors, ...
10
votes
5answers
6k views

Why is Ruby throwing a Segmentation fault on only my system, and only in this Rails application?

I'm not exactly sure how to properly debug this but have tried a few different approaches that have chewed up time, but not solved the problem. At least 4 other people in my office can execute this ...
9
votes
6answers
2k views

Segfault on stack overflow

Why does the linux kernel generate a segfault on stack overflow? This can make debugging very awkward when alloca in c or fortran creation of temporary arrays overflows. Surely it mjust be possible ...
8
votes
2answers
210 views

Segmentation fault while accessing a function-static structure via returned pointer

I have the following structure: struct sys_config_s { char server_addr[256]; char listen_port[100]; char server_port[100]; char logfile[PATH_MAX]; char pidfile[PATH_MAX]; char ...
8
votes
3answers
247 views

g++ produces segfault with normal compilation, but none with -g

I'm learning C++ right now using Bruce Eckel's "Thinking in C++" and I'm in the early chapters. I've got a C and Java background. Right now I've got the following problem: When I compile the sources ...
8
votes
5answers
223 views

Getting Segmentation Fault

I saw many questions about getting segmentation fault in C program here in SO, and I thought it would be great to have a reference to those here, a question with some cases that are causing ...
8
votes
4answers
4k views

Segmentation fault on large array sizes

The following code gives me a segmentation fault when run on a 2Gb machine, but works on a 4GB machine. int main() { int c[1000000]; cout << "done\n"; return 0; } The size of the ...
8
votes
6answers
1k views

Determine static initialization order after compilation?

In C++, I know that the compiler can choose to initialize static objects in any order that it chooses (subject to a few constraints), and that in general you cannot choose or determine the static ...
8
votes
6answers
10k views

Passing an array of strings as parameter to a function in C

I want a simple function that receives a string and returns an array of strings after some parsing. So, this is my function signature: int parse(const char *foo, char **sep_foo, int *sep_foo_qty) { ...
7
votes
2answers
215 views

How to test if an address is readable in linux userspace app

For debugging purposes I need to test a pointer to see if it points to a valid readable page. Currently I am parsing /proc/[pid]/maps to see if the address is mapped ok, but this seems a bit ...
7
votes
5answers
113 views

Why the following will produce segmentation fault?

int main() { char *temp = "Paras"; int i; i=0; temp[3]='F'; for (i =0 ; i < 5 ; i++ ) printf("%c\n", temp[i]); return 0; } Why ...
7
votes
4answers
413 views

Segmentation fault due to lack of memory in C

This code gives me segmentation fault about 1/2 of the time: int main(int argc, char **argv) { float test[2619560]; int i; for(i = 0; i < 2619560; i++) test[i] = 1.0f; } I ...
7
votes
1answer
734 views

segfault during __cxa_allocate_exception in SWIG wrapped library

While developing a SWIG wrapped C++ library for Ruby, we came across an unexplained crash during exception handling inside the C++ code. I'm not sure of the specific circumstances to recreate the ...
7
votes
7answers
1k views

Recursive main() - why does it segfault?

Why does the following program segfault? int main() { main(); } Even though it is a recursion that does not end and is therefore invalid by definition, I don't see why it segfaults (gcc 4.4.3 and ...
7
votes
6answers
409 views

Why does this generate a segmentation fault?

#include<stdio.h> void foo(int **arr) { arr[1][1]++; } main() { int arr[20][20]; printf("%d\n",arr[1][1]); foo((int**)arr); printf("%d\n",arr[1][1]); }
7
votes
10answers
562 views

Why can't I cause a seg fault?

OK for whatever reason I'm having trouble causing a seg fault. I want to produce one so that I can use gdb to see how to debug one. I have tried both examples from the Wikipedia article yet neither ...
7
votes
9answers
2k views

Executing machine code in memory

I'm trying to figure out how to execute machine code stored in memory. I have the following code: #include <stdio.h> #include <stdlib.h> int main(int argc, char* argv[]) { FILE* f = ...
7
votes
7answers
8k views

Line number of segmentation fault

Is there any gcc option I can set that will give me the line number of the segmentation fault? I know I can : Debug line by line Put printfs in the code to narrow down. Thanks! Edits: bt / ...
6
votes
1answer
107 views

PHP weird Seg-faults on mysqli_stmt_bind_result

When migrating a PHP script from PHP 5.2 to PHP 5.3, I've stumbled to the following problem: The general purpose of the script is data mining. I have a procedure inside that adds data to the MySQL ...
6
votes
9answers
232 views

What can cause segmentation faults in C++? [closed]

I noticed there's not question with a list of common causes of segmentation faults in C++, so I thought I'd add it. Naturally it's community Wiki, since there's no one correct answer. I think this ...
6
votes
1answer
130 views

Python: getting segmentation fault when using compile/eval

Code: import ast globalsDict = {} fAst = ast.FunctionDef( name="foo", args=ast.arguments(args=[], vararg=None, kwarg=None, defaults=[]), body=[], decorator_list=[]) exprAst = ...
6
votes
1answer
332 views

Why does my threaded Perl script segfault?

I'm writing a curses script which requires cleanup after processing SIGINT in order to return the terminal back to its original status. I get a segfault when the signal handler is enabled. For ...
6
votes
9answers
349 views

Learning C, would appreciate input on why this solution works

This is literally the first thing I've ever written in C, so please feel free to point out all it's flaws. :) My issue, however is this: if I write the program the way I feel is cleanest, I get a ...
6
votes
5answers
256 views

Segmentation fault problem (C)

I have a struct named Game with an array of levels, defined like this: typedef struct { Level levels[x]; } Game; When I compile the code, if x is 1, 2 or 3, the program runs normally. If it's ...
6
votes
3answers
358 views

Why does my program occasionally segfault when out of memory rather than throwing std::bad_alloc?

I have a program that implements several heuristic search algorithms and several domains, designed to experimentally evaluate the various algorithms. The program is written in C++, built using the ...
6
votes
2answers
2k views

Weird PHP segfault

I discovered a way to make php segfault, and I'm a bit curious about what's happening. Maybe someone can explain this for me? joern@xps:..com/trunk5/tools/nestedset> cat > while.php <?php ...
6
votes
3answers
618 views

Why does Linux program that derefrences (char*)0 not always segfault?

I'm testing code that is designed to detect when a child process has segfaulted. Imagine my surprised when this code does not always segfault: #include <stdio.h> int main() { char *p = ...
5
votes
4answers
143 views

Pygame Segmentation error when using the SimpleCV library findBlob function

I have been using SimpleCV for find blobs to be used with a self-driving robot. The problem is when I call the findBlobs command in SimpleCV. When I completely block the lens of the Kinect Camera, ...
5
votes
2answers
128 views

Using a pointer after freeing it using free()

I'm getting problems with the following type of code: int* myPointer1 = malloc(50 * sizeof(int)); int* myPointer2 = malloc(50 * sizeof(int)); free(myPointer1); myPointer1 = myPointer2; myPointer1[0] ...
5
votes
5answers
694 views

PHP programming seg fault

I've been programming a site using: Zend Framework 1.11.5 (complete MVC) PHP 5.3.6 Apache 2.2.19 CentOS 5.6 i686 virtuozzo on vps cPanel WHM 11.30.1 (build 4) Mysql 5.1.56-log Mysqli API 5.1.56 ...
5
votes
2answers
348 views

Problem with strtok and segmentation fault

I have two helper functions to break up strings in the format of decimal prices ie. "23.00", "2.30" Consider this: char price[4] = "2.20"; unsigned getDollars(char *price) { return ...
5
votes
1answer
99 views

Why is the segfault signal on *nix abbreviated as 'SIGSEGV' and not 'SIGSEGF'?

Is there any historical reason? Is there actually any reason at all or was it pure coincidence? Wikipedia failed on me this time, so I hope you can provide me with some information / an answer. :)
5
votes
5answers
380 views

Why won't my code segfault on Windows 7?

This is an unusual question to ask but here goes: In my code, I accidentally dereference NULL somewhere. But instead of the application crashing with a segfault, it seems to stop execution of the ...
5
votes
2answers
224 views

Decalaration of variable causes segmentation fault

I don't understand the reason of a segmentation fault error in my program. The code is available here At line 29 I declare a PclImage variable, defined with typedef like an array of struct. The ...
5
votes
3answers
336 views

segmentation fault in c program

just for testing i had created the following code: #include<stdio.h> int main(){ char *p = "Hello world"; *(p+1) = 'l'; printf("%s", p); return 0; } But when i ran this over my "gcc" compiler ...
5
votes
6answers
327 views

Seg Fault when initializing array

I'm taking a class on C, and running into a segmentation fault. From what I understand, seg faults are supposed to occur when you're accessing memory that hasn't been allocated, or otherwise outside ...
5
votes
2answers
302 views

What is a segmentation fault?

In Linux: What is a segmentation fault? I know it crashes programs, but is that some sort of memory leak problem, or something completely unrelated? Also, how do you deal with these? Is this ...
5
votes
10answers
500 views

Educational example to show that sometimes printf as debugging may hide a bug

I remember when I was in some course of C programming, a teacher once suggested that I use printf to watch the execution of a program that I was trying to debug. This program had a segmentation fault ...
5
votes
6answers
251 views

How do I know which illegal address the program access when a segmentation fault happens

Plus, The program runs on a arm device running Linux, I can print out stack info and register values in the sig-seg handler I assign. The problem is I can't add -g option to the source file, since the ...

1 2 3 4 5 24