diff options
author | louie <lshprung@yahoo.com> | 2020-07-11 17:13:24 -0700 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-07-11 17:13:24 -0700 |
commit | 2d08a7dbceac846f54cba6b0b75b0de1542df707 (patch) | |
tree | 789218edabe91de3dba177fc8b601bcc265e0d24 /group.c | |
parent | 8f36e6816b5d5bd968f28e3c0acb269560d2796f (diff) |
Small fix to ensure head pointer does not get lost
Diffstat (limited to 'group.c')
-rw-r--r-- | group.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -153,6 +153,8 @@ void clean_groups(){ } } + //ensure groups->head is still correct + groups_head = dummy_head->next; group_rm(dummy_head); return; |