I have the following problem:
void add(){
cRow Row();
Row.add("Column", "Value");
std::vector<cRow> mRows;
mRows.push_back(Row);
}
cRow::cRow(): mCol(NULL), mVal(NULL) {
}
cRow::add(const char* Col, const char* Val){
mCol = strdup(Col);
mVal = strdup(Val);
}
cRow::~cRow(){
free(mCol);
free(mVal);
}
After adding the local variable Row to the vector, the destructor is called for that Row and the strings are freed.
Obviously, the pointers to the strings of the stored row in the vector are now freed as well. Any access to the rows after leaving the local scope will result in segfaults.
The dump of the rows looks after 2 calls like that:
| (null) | (null) |
-----------------------------------------------------
| (null)| (null) |
| LastContainerUpdatePropagation| 1307967498 |
------------------------ END ------------------------
after 3 calls:
| (null) | (null) |
-----------------------------------------------------
| (null)| (null) |
| (null)| (null) |
| LastSystemUpdatePropagation| 1307967498 |
------------------------ END ------------------------
and after leaving the scope completely without adding a new row, every row was freed.
So, now my question: How does std:vector copy objects? What do I have to do to keep the pointers to the strings or to copy them into another space?
Thank you very much!
cRow Row()does not declare a variable, it declares a function. The code you posted is not real, it won't even compile. Please, post real code. – AndreyT Jun 14 '11 at 20:01