0
votes
5answers
363 views
Whats wrong with this program?
char *s = "hello ppl.";
for (i = 0; i < strlen(s); i++) {
char c = s[i];
if (c >= 97 && c <= 122) {
c += 2;
s[i] = c;
}
}
I want to r …
1
vote
2answers
94 views
C++ segmentation fault when trying to output object functions
I am attempting to output functions common to a set of objects that share a base class and I am having some difficulty. When the objects are instantiated they are stored in an arr …
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
4answers
42 views
Segmentation Fault - Adaptive Huffman Tree
I am trying to implement the adaptive huffman code, but while trying to build the tree i get a segmentation fault when executing the code at line "currentNYT->lchild = newNYT;" in …
3
votes
3answers
138 views
Segmentation fault only when running on multi-core
I am using a c++ library that is meant to be multi-threaded and the number of working threads can be set using a variable. The library uses pthreads. The problem appears when I run …
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
5answers
139 views
Segmentation fault on time(0);
Hi!
I'm rewriting an old program to do some new stuff, and suddenly I get a segmentation fault error on the following line of code:
time_t seconds_since_time_begun = time(0);
W …
0
votes
3answers
79 views
Help with segmentation fault in struct
Hello. I am having trouble debugging my code. I have a struct and a
function to compute the time difference entered in HH:MM:SS format.
My code is:
const int hourConv = 3600; …
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
4answers
41 views
Segmentation fault, using pointers to pointers
So I'm starting my magic square hw, where I ask the user to enter a odd integer, and it will create a magic square off that. I have to use pointers and arrays as that is all I have …
1
vote
1answer
83 views
Strange segmentation fault C++ in _vfprintf_r()
Someone please see my code at this link for input taken from this file( 2.2 mb file). This produces seg fault. By gdb, it shows seg fault in _vfprintf_r(). But when I comment line …
0
votes
7answers
308 views
What is the reason for a segmentation fault with this C++ code using lists?
I have some complicated C++ code but the problem narrows down to doing a push_back on a list of structures:
list<cache_page> cachedPages;
void f()
{
cache_page cpage(a, …
1
vote
2answers
147 views
Segmentation fault when catching exceptions in a libpthread linked app ( linux, C++ )
Hi
I have this piece of code here:
These are functions used to create and stop a pthread:
void WatchdogController::conscious_process_handler_start() {
if ( debug ) cout < …
2
votes
3answers
145 views
Why the SIGSEGV?
Why is this code throwing up a SIGSEGV:
int main()
{
unsigned long toshuffle[9765625];
unsigned long i;
for (i=0; i< 1000; i++)
toshuffle[i]= i;
retu …
0
votes
2answers
827 views
Putting user input into char array (C Programming)
I need to read the input from the console and put it into an array of chars. I wrote the following code, but I get the following error: "Segmentation Fault"
#include <stdio.h&g …
