Ok... I am ripping my hair out... Why am I getting segmentation fauls when I am passing a string called "name" with contents "joel" into

void person::setName(string newName)
{
    personName = newName;
}

Header file:

class person {
public:
    int getID();
    string getName();

    void setID(int newID);
    void setName(string newName);
private:
    int personID;
    string personName;

};

btw... the function call is by a child, although I dont see how that could cause an issue.

link|improve this question
Also... It runs on previous itterations without fault... It just doesnt like this iteration... I would link the code but theres buckets of the stuff X( – falconmick May 2 '11 at 11:34
1  
I don't think your problem is that function. You may want to take a look at how you are creating/accessing the person object you are using. – Cole W May 2 '11 at 11:35
Your code example is alright, the segfault is caused somewhere else. Please step through your code with a debugger to find the line of code causing the error. – Ferdinand Beyer May 2 '11 at 11:36
1  
Um, are you saying that that string "the program being debugged..." was the contents of that variable? Very strange. Can you tell us which line of code the fault is on? Build the program with -g (if using GCC), then run it in GDB. It will break on the error. If you don't recognise where you are, then type bt which will show the function call stack. Look up the stack until you find some of your code -- that is the line with the error. – mgiuca May 2 '11 at 11:44
1  
@mgiuca: To be precise, that would be the line with the symptom. The actual error could be elsewhere. – Oli Charlesworth May 2 '11 at 11:48
show 5 more comments
feedback

2 Answers

If you are on Linux, try running valgrind. You just compile with -g (with gcc), and then run your program with valgrind in front:

$ valgrind myprogram

Unlike the GCC solutions, which tell you when the segfault occurs, valgrind usually tells you exactly when the first memory corruption occurs, so you can catch the problem much closer to its source.

PS. It rhymes with "flint", not "find".

link|improve this answer
feedback

Probably, you are dereferencing a rogue pointer. By pure guesswork, have you got something like this, perhaps:

 Person persons[10];

 for (i=1; i<=10; i++)
     persons[i].setName("joel");

The problem might be:

  • the error like shown, the index is 0-based, so you need for (i=0; i<10; i++)
  • if the array is allocated dynamically, but the index is still out of bounds

There could literally be hundreds of other causes, but since I don't have your code, this is my attempt to guess most plausible errors ;)

(Note to self: why am I doing this/I'm not psychic?)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.