4
votes
4answers
151 views
Segmentation Fault With Char Array and Pointer in C on Linux
So I have the following program:
int main(){
char* one = "computer";
char two[] = "another";
two[1]='b';
one[1]='b';
return 0;
}
It segfaults on the line "one[1]='b'" …
3
votes
2answers
154 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 > w …
0
votes
3answers
140 views
Causing push_back in vector<int> to segmentaion fault on what seems to be simple operation
I'm working on a program for Project Euler to add all the digits of 2^1000. So far I've been able to track the program segmentation faults when it reaches around 5 digits and tries …
0
votes
4answers
48 views
Segmentation Fault - Displaying Tree
I get a segfault when calling viewTree(root);
struct treeElement {
unsigned long weight;
unsigned short id;
char chr;
struct treeElement *lchil …
0
votes
0answers
46 views
Boost.Python + OpenGL segmentation faults
I have a (almost) perfectly working C++ code written with Boost.Python. It wraps a shared pointer based structure hierarchy of 3 or 4 classes, nothing terribly complex (i.e. class …
1
vote
5answers
120 views
C: Accessing a pointer from outside a function
I have the following code:
int takeEven(int *nums, int numelements, int *newlist) {
newlist = malloc(numelements * sizeof *newlist);
int i, found = 0;
for(i = 0; i < …
5
votes
3answers
221 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( …
2
votes
1answer
45 views
What is causing this segmentation fault while using SSE instructions?
This problem is driving me a bit crazy. The code seems to be segmentation faulting for no good reason:
#define MULT_FLOAT4(X, Y) ({ \
asm volatile ( \
"movups (%0), %% …
0
votes
1answer
13 views
Mysql_num_rows() Segfaults
I'm writing a program using C++ and the MySQL C API (version 5.1.31 ubuntu2). However, if the query is UPDATE then I get a Segmentation Fault error when executing the line "RowsRet …
0
votes
6answers
133 views
Valgrind: Deliberately cause segfault
This is a mad-hack, but I am trying to deliberately cause a segfault at a particular point in execution, so valgrind will give me a stack trace.
If there is a better way to do thi …
2
votes
3answers
122 views
ANSI C getc causes segfault on Linux but not OS X
I have some ANSI C code that I developed on my Mac, but when I tried running it on our school's Linux servers I get a segfault.
The specific line that is causing me trouble is a g …
9
votes
8answers
489 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 segment …
0
votes
1answer
90 views
Push Call to STL Queue<std::string> causes Segfault when String is read off socket
I'm using an STL Queue as an input queue, it's containing std::strings, which I have aliased as String using a typedef. I'm reading the input string off a socket - using Berkeley …
0
votes
3answers
76 views
How do I find out where an object was instanciated using gdb?
I'm debugging an application and it segfaults at a position where it is almost impossible to determine which of the many instances causes the segfault.
I figured that if I'm able …
0
votes
2answers
44 views
How can I add debugging symbols to Audacious?
I am writing a plugin for audacious, and I am experiencing random segfaults. I looked around and I found that I can process the program's core dumps with gdb.
So I did that, and …
