If I understand anything about your code,
Problem 1 (plausible):
goList = userInventory;
do {
...
goList = goList->next;
} while (goList != userInventory);
Is this a circular list? If it's not, the condition in while () isn't going to become true.
Problem 2:
goList = userInventory;
do {
if (strcmp(userInventory->username, args[1]) == 0) {
...
}
goList = goList->next;
} while (goList != userInventory);
Here you keep comparing the string in the head (or tail) of the list instead of comparing the string in the current node, goList. Finding a match can only succeed in the above code, if the match is in the very first node (head/tail) to which userInventory points initially.
Problem 3:
temp2 = userInventory->next;
if (userInventory->next != NULL) {
userInventory->next = temp2->next;
userInventory->next->prev = userInventory;
}
free(temp2);
Let's assume userInventory is already corrected to be goList:
temp2 = goList->next;
if (goList->next != NULL) {
goList->next = temp2->next;
goList->next->prev = goList;
}
free(temp2);
First of all, it's going to free() not the matching node, but the one after it (or maybe even NULL), which is wrong.
Secondly, this piece of code isn't doing proper unlinking and relinking of nodes. What it should be (assuming the list isn't circular):
temp2 = goList;
if (goList->next != NULL) {
goList->next->prev = goList->prev; // now goList->next node points to goList->prev node
}
if (goList->prev != NULL) {
goList->prev->next = goList->next; // now goList->prev node points to goList->next node
}
free(temp2);
Problem 4:
do {
if (strcmp(goList->username, args[1]) == 0) {
temp2 = goList;
if (goList->next != NULL) {
goList->next->prev = goList->prev; // now goList->next node points to goList->prev node
}
if (goList->prev != NULL) {
goList->prev->next = goList->next; // now goList->prev node points to goList->next node
}
free(temp2);
}
goList = goList->next;
} while (...);
If the deletion succeeds, this line is going to access the just freed node and likely crash your program:
goList = goList->next;
So, you need to change the code to something like:
do {
if (strcmp(goList->username, args[1]) == 0) {
temp2 = goList;
if (goList->next != NULL) {
goList->next->prev = goList->prev; // now goList->next node points to goList->prev node
}
if (goList->prev != NULL) {
goList->prev->next = goList->next; // now goList->prev node points to goList->next node
}
goList = goList->next;
free(temp2);
}
else
{
goList = goList->next;
}
} while (...);
Problem 5:
goList = userInventory;
If you delete the list head (or is it tail?) node, you need to update userInventory to point to the next node after it. If you don't, you will lose all access to the list because userInventory will point to freed memory and not to the remaining nodes, if any.
Problem 6 (plausible):
free(temp2);
The above line does not free() the memory behind temp2->username. You want to free() it if it was malloc()ed.
You should really approach problems one step at a time (e.g. first, iterating over a list, then unlinking/relinking nodes, then deleting nodes).
When things aren't clear or aren't working, use paper and a pencil (or a drawing board and a pen or a piece of chalk) to visualize the problem for yourself. Draw the objects, the arrows depicting pointers or some other connections between them, etc etc, scribble variable names next to the objects so you can clearly see how to progress from the diagram to code.