So I have a linked list getting created correctly, linked properly but when I try to de-allocate memory I can't seem to delete any node, the list still exists. Code for my list deconstructor:
void LL_User::free_memory() {
// TODO
LL_User_Node *currentNode;
currentNode = head;
while(currentNode) {
LL_User_Node *temp = currentNode;
currentNode = currentNode->next;
delete temp;
}
//cout << "LL_User::free_memory() is not implemented yet.\n";
}
LL_User::~LL_User() {
if(head == NULL) {
return;
}
free_memory();
}
And my user class has this for the vars and deconstructor:
User::User() {
username = "";
password = "";
first_name = "";
last_name = "";
profile_pic_filename = "";
birth_year = 0;
birth_month = 0;
birth_day = 0;
}
User::~User() {
//Nothing placed in body because strings and ints are dealt with by OS?
}

newvariables in yourfree_memoryfunction?! – emartel Nov 19 '12 at 18:33currentNode = head;creates a memory leak. – andre Nov 19 '12 at 18:34