I am getting a segmentation fault in my program and gdb tells me it is in this function on the line of

parent->getChildren().push_back(temp);

in

void Tree::add(Position& value, Node*& parent) {
    Node* temp = new Node(value, parent);
    parent->getChildren().push_back(temp);
}

I have added cout statements before that line and everything seems to be valid when the function is called. But I don't think my vector can be invalid? The vector declaration is here -

std::vector<Node*> children;

with getChildren() just returning std::vector&. Any help is appreciated.

Node constructor:

Tree::Node::Node(Position& v, Node*& p)
    : value(v), parent(p), gvalue(0), hvalue(0), fvalue(0) {} 
link|improve this question

73% accept rate
2  
Are you sure Node*& parent is what you want? – GWW Jun 28 '11 at 3:48
Are you sure parent is not getting deleted before you make this function call? – Als Jun 28 '11 at 3:52
Can you give the constructor detail for Node(value, parent) ? – iammilind Jun 28 '11 at 3:54
1  
"with getChildren() just returning std::vector&" How is it returning that std::vector&? If it's allocated on the stack and a reference is returned, that could cause a segfault quite readily. – ildjarn Jun 28 '11 at 3:55
@ildjarn, I think getChildren() returns class data member children inside the the whatever class of parent, so it should be valid. – iammilind Jun 28 '11 at 3:56
show 5 more comments
feedback

2 Answers

up vote 1 down vote accepted

That can't be an "element problem" because you just push_back(Node*). That can't fail.

So I see 2 possible "vector problems":

  1. Problem with parent-> because parent is not allocated.
  2. Problem with getChildren(). because it returns a reference to non-existing vector.

Try to check both of them.

link|improve this answer
I changed multiple things to get the program working, but I think the second thing here was the problem. Basically, I had a priority queue using a c style pointer for nodes, but my Node() constructor did nothing. I changed the c style pointer to a vector and some other code to accommodate for it and this problem went away. – Sterling Jun 28 '11 at 18:30
feedback

Add the line:

void Tree::add(Position& value, Node*& parent) 
{
    if (parent == NULL)
    {
        std::err << "Error Null parent. Aborting\n";
        exit(1);
    }
    Node* temp = new Node(value, parent);
    parent->getChildren().push_back(temp);
}
link|improve this answer
That condition is not true when I put it in the code. – Sterling Jun 28 '11 at 4:19
Its also not true for temp. – Sterling Jun 28 '11 at 4:21
feedback

Your Answer

 
or
required, but never shown

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