0
votes
4answers
72 views

Segfault — but the pointer isn't NULL [closed]

I am doing something like the following in C: void *initialize() { my_type *ret = malloc(sizeof(my_type)); return (void*)ret; } void test() { my_type* ret = (mytype*)initialize(); ...
0
votes
2answers
40 views

Card game issues - memory and odd values

I got the most parts working, including randomizing and shuffling, but when it comes to allocating the right face / suit values, I can't get it right. Also, I'm getting 'Aborted (core dumped)', ...
0
votes
0answers
32 views

'Segmentation fault' with pthreads and arrary of pointers

Ok, I've hit a wall with my program. I am using pthreads to implement a parallel program, but I have come into a "Segmentation fault" with this block. //This is all in the main function //{{{{{ ...
1
vote
2answers
97 views

C++ Segmentation Fault - Core Dumped [closed]

I've been having this issue for a while now and I've searched about this type of error and I believe it has to do with a memory leak or a pointer that is pointing to nothing. I've checked my code ...
2
votes
4answers
48 views

C - Getting a struct from a function by pointer - segmentation fault

I'm fairly new with C, and I'm having a great deal of trouble with this one function. I have a struct declared as: struct nivel { size_t filas; size_t columnas; int **mapa; }; It's just ...
0
votes
1answer
53 views

Errors with Implementing Breadth First Search (C)

I have been working on a Binary Search Tree and several of its function implementations for a school assignment. I just wrote my Breadth First Search functions and I am getting a segmentation fault in ...
-1
votes
2answers
49 views

How come changing the way I declared pointers to Objects is causing so many Segmentation Faults? C++

Question: Why do I keep getting Segmentation faults after changing the way I declared and used my pointers to Objects? They seem to be random in my opinion, but I'm sure there's a reason explaining ...
2
votes
1answer
44 views

segfault to a null pointer C++

WordBinaryTree::WordBinaryTree() { //RootNode is a private WordNode* of WordBinaryTree() RootNode = 0; //just to set it to null... } void WordBinaryTree::AddNode(WordNode node) { //RootNode ...
-5
votes
1answer
86 views

How do I set a pointer to an object to Null? C++ [closed]

I'm working on a roguelike game and I have it set up so that at MOST there will be 3 monsters on a level. So I have 3 pointers to monsters. They all start out as NULL. How should I go about setting ...
1
vote
1answer
76 views

C segfault when assigning value to address in a struct

I have a 2 structs like this typedef struct data { int datap; int channelNumber; } data; typedef struct RingBuffer { unsigned int *size; unsigned int *start; unsigned int *count; ...
0
votes
1answer
61 views

Segmentation fault when assigning value in double pointer

I have a double pointer that I am using to create an array of linked lists. Basically I am trying to take the data from my "cities" that is already in an array, and assign these cities in my "row" ...
0
votes
3answers
107 views

Segmentation fault is coming due to constructor

I wrote a C++ code to build binary search tree. Code compiled correctly, but when I try to run the executable its giving segmentation fault. Below is my code: #include <iostream> using ...
2
votes
1answer
83 views

Crashing on strcpy, not sure why?

if (strlen(shortest) > strlen(longest)) { char *temp; strcpy(longest, temp); strcpy(shortest, longest); strcpy(temp, shortest); } } ...
2
votes
3answers
71 views

Seg fault when deleting temporary pointer

I used gdb to find the exact line with the seg fault. It's noted within the dequeue function as a comment. Here is the entire queue class. I seg fault upon calling dequeue() when there are two ...
0
votes
2answers
55 views

Array of pointer to structs printing

I have an array of pointers to structs: item** items = NULL; These are the functions I wrote for allocating and printing the array: void allocateItems(item** items, int numItems) { items ...
0
votes
1answer
47 views

Segementation Fault with strcpy

Constants: #define MAX_OPCODE_NAME_LEN 4 I have an array of structs: OPCODE *mot[NUM_OPCODES]; Struct def: typedef struct opcode { char name[MAX_OPCODE_NAME_LEN + 1]; char format; int type; } ...
-1
votes
1answer
48 views

Segmentation fault with a element of QList

In my application I have a list of pointer to QFile objects: QList<QFile*> files This function adds the elements on the list: void MumuServer::openFiles(){ QDir ...
2
votes
2answers
95 views

I'm new to C, and this segmentation fault stuff is killing me [closed]

I am new to c, and I am hitting the web hard, soaking up resources to help learn. I am starting off with a simple command prompt type deal, and even this is giving me difficulties! I am trying my ...
1
vote
1answer
55 views

C realloc segmentation fault with appending char * to char **

I'm having trouble with the following code, which appends a char * to a char** by allocating more space. size_t appendToken(char *tokens[], char *token, size_t size, size_t cap) { ...
2
votes
3answers
115 views

C Code Pointer Puzzle

I'm looking at some code a classmate posted and it has been simplified for the sake of this example: int main() { int n = 0x4142; char * a = (char *) &n; char * b1 = (((char *) ...
1
vote
3answers
80 views

C segmentation fault when trying to implement LinkedList

I've got the following code: #include <stdio.h> #include <stdlib.h> #define MAXN 100 typedef int key; typedef int data; struct list * createElement(key k, data info); struct list{ ...
3
votes
1answer
54 views

Why Do I Get a Segmentation Fault with this C Code?

This code gives me a segmentation fault: char *s1 = "String 1", *s2 = "String 2"; void swap(char **, char **); int main(void) { swap(&s1, &s2); return 0; } void swap(char **p, char ...
0
votes
4answers
87 views

C programming segmentation fault linked list program

I am fairly new to c (and this site) and I am having a lot of issues with segmentation faults. I am writing a program that creates a linked list of numbers and inserts values in ascending order. ...
0
votes
3answers
99 views

Segmentation fault when indexing into char array via pointer

My code is causing a segmentation fault when accessing an array element even though that element was already accessed without a problem. int charToInt(char a) { int b; if(isdigit(a)) { ...
2
votes
1answer
157 views

Assignment of a pointer within a struct NOT WORKING, why is the value not changing?

For a school project I am supposed to implement a simplified version of the UNIX filesystem using only linked list structures. I am currently having a problem with my mkfs() function, which is ...
0
votes
2answers
79 views

pointer to 2d array, program compiling but throwing segmentation fault at run time

I have a following function in my class. bool ncread_llt::get_dataArray_atOnce (float **data) { startp[0]=0; countp[0]=ntime; float vdata[ntime][nlat][nlon]; dataVar.getVar(startp, ...
0
votes
3answers
160 views

Not sure what's wrong — Program Segfaults on two occasions

I'm using SDL to create a pretty simple Pong game. For the collision detection, I have a class called DetectCollision which looks like this: class DetectCollision { public: ...
0
votes
1answer
79 views

Run-time error when passing derived-class pointer C++

I am getting a seg fault when trying to add a pointer to an object to a vector in an instance of another object. I am adding multiple pointers to the vector at once and the first one works but the ...
1
vote
4answers
98 views

Segmentation fault when assigning pointer to pointer [closed]

I have struct Node{ Node* father; Node* left_son; Node* right_son; char content; }; void build_tree(Node* node){ Node* left; left->father=node; //segfault } void init(){ ...
1
vote
4answers
102 views

SIGSEGV (Segmentation fault) C++ Pointers

Ok this is my code: #include <iostream> using namespace std; class Nodo{ public: Nodo *siguiente,*anterior; string Nombre,Curso,Posicion; int carnet; Nodo(){ ...
1
vote
1answer
88 views

Copying data from one pointer to another seg fault

I'm a bit rusty with my C skills and the other day I was working on an assignment and came across some pointers. I don't know why, but this has completely stumped me. So, please forgive me if the ...
0
votes
1answer
36 views

Segmentation fault in ROS application with iplmage

I'm trying to detect a blob on a video feed with cvBlob lib in my ROS node. I think, I made a mistake with pointers, but I can't figure out where. Moreover, do I have to free some of this variable? ...
0
votes
2answers
191 views

how to check the value of pointer (void) not be zero (Attempt to dereference a generic pointer)

Sorry it must be very simple question , but since I tried in diffrenet ways without any success I have to ask here to be sure. C programming : There is a struct name rtg. EDIT: type of mtch is LLIST ...
0
votes
2answers
107 views

Parsing command line for execve() error. Plain C

I'm new to C pointers and trying to execute process with command line and obtain its pid. Any of system(), sh(), etc, that use command line doesn't return pid, so I desided to use execve(). But it ...
0
votes
0answers
74 views

Box2D CreateBody returns invalid pointer, causes segfault

I'm working on a Box2D project and I keep getting a segmentation fault. Here is the problem code : PhysicsObject::PhysicsObject(b2World *w, sf::Texture& tex, int sX, int sY, b2BodyDef bodyDef, ...
2
votes
1answer
209 views

pointer to one struct in another, writing and reading it from file gives SegFault

I am brushing up my C skills from Learn C The Hard Way, currently I am at 17th Exercise. I am doing the 'Extra Credits' part. Making the database code given on that page to get I am trying to ...
0
votes
1answer
17 views

Seg Fault from Array of Nodes

I'm working on a project and I'm trying build an array of nodes as a heap so that in each index of the array, I can store a name and value. Essentially I want my constructor to set the value of the ...
0
votes
3answers
86 views

Pointers in C++; segmentation fault error:

I have just started to study C++, and right now I am working with pointers. I cannot understand why the following thing is happening. So, say I have two classes A and B. A has an integer field (int ...
-3
votes
2answers
96 views

Segmentation fault from calling a function from an object within an array

I have a programming assignment that requires us to use a dynamically allocated two-dimensional char array in-lieu of strings and vectors. I have two classes: Word which holds a pointer to a char ...
-1
votes
2answers
103 views

C char arrays and pointers - merge of mergesort

I'm trying to implement merge by reading characters from a pipe and then putting them into a result string. I keep getting a segmentation error and am having trouble debugging the source of the ...
0
votes
2answers
95 views

Why would this example give a segmentation fault?

Does anyone know why this would give me a segmentation fault? cell.h struct cell{ bool filled; bool isParent; //float px,py,pz,s; bool cx,cy,cz; unsigned char r,g,b; vect norm; struct ...
0
votes
2answers
83 views

Using Pointers to Modify Strings

so I have a function that takes a Pointer to an array of 'Strings' (I understand strings as just blocks of memory that is followed by '\0'). Since a string is already a pointer to the first byte of a ...
1
vote
1answer
92 views

How can std::set::erase(const key_type& key) cause segfault?

I'm tracking a bug and I run into very strange behaviour. I have set of pointers and when I erase them one-by-one, first one erases, but erasing another gives me segfault. I use size_type erase( ...
2
votes
2answers
125 views

Segmentation fault while accessing the return address from a C function in 64 bit machine

I have code in C (linux(x86_64)) some like this: typedef struct { char k[32]; int v; }ABC; ABC states[6] = {0}; ABC* get_abc() { return &states[5]; } while in main(): int main() ...
0
votes
1answer
71 views

Shared memory program not synchronized - Giving segmentation faults

I am trying to use shared memory with 2 programs which I have shown here. a and b are integer arrays and array1 and array2 are arrays of strings. This is the snippet first program which loads the data ...
1
vote
3answers
169 views

C-language strstr segmentation fault

i'm a beginner,tracks.c: #include <stdio.h> #include <string.h> char tracks[][5] = { "one", "two", "three", "four", "five", "six", }; void track_search(char ...
1
vote
3answers
82 views

ToUpper implementation, segfault? [duplicate]

Possible Duplicate: Why do I get a segmentation fault when writing to a string? #include <iostream> using namespace std; int main() { char *a="hello"; int temp,temp1; ...
1
vote
2answers
87 views

allocating array and assigning values from a function C

C question Hi, I am passing a double pointer to a function to allocate a double array and initialise the array inside the function with lets say 10.10; I do the following but get segmentation ...
2
votes
5answers
248 views

Using 2D array of char pointer in C

I want to read a file and write each line to array of char. As I don't know the amount of lines, therefore I thought the most efficient way is to use 2D array of char pointer. However I get ...
0
votes
1answer
109 views

segmentation fault in feof(FILE *) inbuilt Function

void suffix_strip(FILE *fp) { FILE *fp1; char word[20],ch; int len; int i=0,j; fp1=fopen("sstrip.txt","a+"); while(!feof(fp)) { ch=fgetc(fp); if(ch!='\n' ...

1 2 3 4 5