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.
1
vote
2answers
31 views
Getting the input strings into an array and sort the array of strings alphabetically
I want to input some strings and sort them alphabetically, at most 100 strings and the length of each string is less than 50, but I get a Segmentation fault.
#include <stdlib.h>
#include ...
0
votes
2answers
36 views
Seg fault after pthread_create (
I cannot for the life of me figure out why this is seg faulting.
It is seg faulting in
get_ranks_parallel
on the line
for (struct node* node = data->plist->head; node!=NULL; ...
1
vote
3answers
104 views
Segmentation fault in number printing program
When I run this I get a segmentation fault??
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static char* exe;
void usage(void) {
printf("Usage: %s <number of ...
0
votes
4answers
45 views
Segmentation fault in function
When I run debugging it points to the line: 105 (and writes "segmentation fault" in the left corner). I don't know what does red line in "Call stack" window mean...
Please, tell waht it is and where ...
-2
votes
1answer
58 views
Segmentation Fault on using pointers instead of array
while(!feof(fname))
{
fscanf(fname,"%c",buf);
printf("%c",*buf);
buf++;
}
When I use this code, the compiler gives me a segmentation fault(core dumped).
But instead of this if I ...
0
votes
1answer
16 views
Linux: handling a segmentation fault and getting a core dump
When my application crashes with a segmentation fault I'd like to get a core dump from the system. I do that by configuring before hand
ulimit -c unlimited
I would also like to have an indication ...
1
vote
2answers
54 views
c programming segfault unitialised int?
I have this c program that looks like.
int indexLength;
char *args[1024];
while(args[indexLength])
indexLength++;
If i run the program under computer at work, the while loop line gives me a ...
0
votes
0answers
28 views
Segmentation fault when using CMVision-based
I'm currently working with a computer vision project, and the problem lies in a function that takes a mode (for color) and a SEGMENTATION pointer as arguments.
This is the segmentation class - ...
1
vote
3answers
74 views
Assembly set address to point to an address
I'm trying to build a linked list in assembly (dont ask why), the linked list has to be in a stack I built.
I'm using nasm with intel 80x86 on ubuntu
This is the linked list:
size_i:
struc node
...
0
votes
3answers
62 views
Segmentation fault (core dumped) when parsing char data
I need your help.
I have a program to read gps and accelerometer data from port. The programm work like this : when I send 'a' prog will receive gps data and send to database, when I send 'b', prog ...
1
vote
1answer
54 views
C Segfaults when trying to free memory that no longer needs to be used
I am working on a circular buffer program in C. The buffer has to be able to expand and shrink depending on certain conditions that are checked each time the buffer is updated with a new quote (the ...
0
votes
0answers
33 views
Zend_Form validate crashing PHP
Running PHP 5.4.15 / ZF 1.12.3 (upgraded from 5.4.12 or 13 I believe). Running nginx w/ php-fpm, also tested with Apache. NOTE: This appears to be related to APC. I would highly prefer APC, and cannot ...
1
vote
2answers
44 views
Is cache miss a kind of interrupt/fault
We know that a page miss in memory will bring a page fault, and the page handler must load the page into the physical memory. Here I wonder whether a miss in a cache is also a system fault? If not, ...
-1
votes
1answer
38 views
Segmentation Fault CUDA-C
I am using CUDA to add two matrices, and to give their result in another matrix. I wish to make use of shared memory feature, and for this, I wrote the following:
#include <stdio.h>
#include ...
0
votes
1answer
50 views
segmentation fault while freeing memory integer array
So basically my problem is within this function while I'm trying to free memory from array q.
int makegrid (float *x, float *y, float squaresize, float map, int npoints)
{
int score=0, i;
int m ...
1
vote
1answer
50 views
Vector of pointers segfaulting on call to size() and upon creation of an iterator
I have a class which contains a vector of pointers to a class. In most of its member functions, I can access and modify the vector just fine. However, in one function even calling .size() or getting ...
-3
votes
1answer
43 views
fgets () segmentation fault [closed]
I have a simple code in c that read from file one line and print it till exist any line but when i want to run it on linux mint a get segmentation fault the code is:
# include <stdio.h>
int ...
-1
votes
1answer
30 views
how to call printf from assembly nasm x86 linux 8086
I'm trying, unsuccessfully, to call printf from an assembly program as follows:
section .rodata
preffix: db "calc >",0
preffix_length: equ $-preffix
section .text
align 16
global main
extern ...
-1
votes
2answers
49 views
Cast from void * produces Segmentation Violation error
I'm using the Gnu Scientific Library to implement a module in my program that computes integrals numerically.
The functions are based on the example that can be found on the GSL website in Numerical ...
0
votes
1answer
52 views
Segmentation fault on calling function more then once
running this function more then once will cause a Segmentation fault and i cannot figure out why. Im not looking for alternative ways to split a string.
SplitX will continue splitting for x ammount ...
1
vote
0answers
40 views
Node.js source code build giving segmentation fault on ARM
tl;dr: I tried to install node.js on my ARMv7-based Cubox running Ubuntu 12.10 (quantal). When compiling node.js from source (see "Second attempt" below), node produces a segmentation fault. What can ...
-2
votes
0answers
20 views
SPOJ ALMOST SHORTEST PATH [closed]
help in here, I'm trying to solve SPOJ's almost shortest path problem (SAMER08A), I have a Segmentation fault, do you see the problem????
I ran it xcode and it work perfectly, but I don't know ...
0
votes
6answers
71 views
Numerical differential equation solver algorithm segfaults unexpectedly
I was trying to solve a differential equation in octave but it takes forever with the differential unit I have chosen, so I decided to code it in C. Here is the algorithm:
#include <stdio.h>
...
0
votes
0answers
48 views
OpenCL clEnqueueReadBuffer segfaults randomly
I'm having a hard time determining why a segmentation fault occurs randomly at the following line in my code:
rc = clEnqueueReadBuffer(ompctx->clctx->queue,
...
3
votes
1answer
80 views
C++: Strange vector behavior
While writing code for my assignment, I have stuck on one strange behavior. The code is big, so while it is not necessary, I won't post it.
The thing is while I was trying to delete an object from ...
0
votes
3answers
52 views
Why am I getting Segmentation fault?
I am trying to learn how to use structures and linked lists in c but I really don't understand why the following code gives me Segmentation fault:
I have 3 files named list.h, operations.c and ...
0
votes
2answers
45 views
segmentation fault - Doubly Linked List
I am implementing a doubly linked list that works similar to a queue. So when I add nodes to the list (e.g 5 nodes) and empty the list and try to add a new node to the list, it gives me a segmentation ...
-1
votes
4answers
56 views
Doubly Linked List - Segmentation Faults - C
I am trying to implement a doubly linked list that acts like a queue (I want it to act like queue).
[EDIT]
When I add nodes to the list (e.g 5 nodes) and empty the list (delete all elements) and try ...
0
votes
2answers
68 views
C - Segmentation fault when using malloc [closed]
I'm gettin' segmentation fault when trying to allocate memory to a LISTA pointer.The input consists of several test cases. The first line of a test case contains two integers C and N which ...
0
votes
1answer
33 views
ShellExecuteEx & GetExitCodeProcess - Handle Invalid or Segmentation Fault
I'm trying to start an application and then monitor it until it closes. I'm using ShellExecuteEX and GetExitCodeProcess and having several problems.
The code below causes a segmentation fault when ...
0
votes
4answers
74 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
24 views
pass Mat to CvMat* segmentation fault
I want to pass a value to a pointer variable, namely from type Mat to CvMat*?
So I have something like the following and want to pass it to the variable Si;;
Mat S=(Mat_<double>(1, 3) ...
1
vote
0answers
48 views
EXC_BAD_ACCESS, Could not access memory
I have code doing numerical optimization (large program). In gdb it exits with
Program received signal EXC_BAD_ACCESS, Could not access memory.
Reason: 13 at address: 0x0000000000000000
[Switching to ...
-4
votes
0answers
47 views
cudaEventSynchronize results in segfault
I am currently writing a molecular dynamics simulation with hybrid acceleration. To do so I measure the time of the GPU-kernel and the time of the CPU-kernel and compute ratios from that. My problem ...
-1
votes
0answers
43 views
Segmentation violation on “change folder” in Matlab [closed]
When I am running a certain .m-file not currently on the matlab path, the dialog pops up where you can choose to 'change folder' or 'add to path'.
When clicking 'change folder', matlab consistently ...
1
vote
1answer
65 views
std::sort with equal elements gives Segmentation fault
I have a container storing pointers. I am trying to sort these pointers in non-increasing order based on a data member in the corresponding objects pointed by the pointers. In my case, it is possible ...
0
votes
0answers
77 views
std::sort() is deleting my objects
As the title says, i'm having trouble with std::vector.sort(), because it is freeing up my objects, and when I try to access them later on, I get the dreaded segmentation fault.
These are the ...
2
votes
2answers
44 views
c program seg fault not making sense to me (c beginner)
This program compiles but when run outputs a few of the first print statements in the find() method then issues Segmentation fault:11 when the for loop hits.
So I tried debugging with gdb but could ...
5
votes
1answer
74 views
type_traits segmentation fault with std::string
Gathering the information from Using SFINAE to check for global operator<<? and templates, decltype and non-classtypes, I got the following code:
http://ideone.com/sEQc87
Basically I combined ...
0
votes
0answers
30 views
CMUSphinx Pocketsphinx version 0.8 On Android causes fault addr deadbaad
I'm using 0.8 version of Pocketsphinx but randomly i keep getting
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr deadbaad following line from logcat
#02 pc 0003c8f0 ...
3
votes
1answer
92 views
Using pthreads and malloc
I asked a question Using sockets in multithread server yesterday. In this question I described segmentation fault under Solaris in multithreaded server. Now I have found the core of error and written ...
0
votes
0answers
12 views
Segmentation fault at libpthread.so.0 [migrated]
My Apache shows segmentation fault.
I’ve tried gdb for analyzing core dump.
Following list is last some lines.
Loaded symbols for /usr/lib64/libgcrypt.so.11
Reading symbols from ...
0
votes
1answer
37 views
Segfault using sp_session_logout after playing track
I'm getting a segmentation fault using if I try to call sp_session_logout after playing a song. I can't really say much about the segfault, as I don't have the symbols,
With the following code the ...
0
votes
2answers
51 views
Memory allocation to define a matrix structure
I'm programming A* code and have a weird 'Segmentation Fault' problem trying to access to a int** matrix.
Here the code of an example of matrix. When i try t plot the first cout i obtained a ...
-1
votes
2answers
48 views
Seg fault in C on weight[a]= data;
fscanf(ifile, "%c", &jnk);
/* If there's a height, this will be a ". if not, it'll be a ,*/
if ((jnk = '\"') || (jnk != ',')) {
printf("%c", jnk);
while(fscanf(ifile, "%c", &data) ...
0
votes
2answers
43 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
3answers
63 views
Using sockets in multithread server
guys!
I'm developing multithread server on c under *nix. In the main thread of the process I have listening socket which waits for connections (accept). When it gets a connection (accept returns ...
0
votes
1answer
30 views
g++ segfault with iostream package
I have the following code in ClassName.h
#ifndef CLASSNAME_H
#define CLASSNAME_H
#include <iostream>
#endif
Compiling this as g++ Classname.h regardless of using flags produces the following ...
0
votes
0answers
19 views
Segmentation fault 11 modsecurity?
If i disable mod security module it fixes segmentation faults problem. Problem occur on php script wich accually saves some configuration to file.
What this backtrack log is saying ???
Where I should ...
0
votes
1answer
50 views
Segfault with readdir()
I'm just starting with C programming, and i'm trying to read and display files in a directory (just like the ls command).
Here's a part of my code where I get a segfault, and I have no clue why:
...


