diff options
author | James Booth <boothj5@gmail.com> | 2015-02-09 21:53:55 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-02-09 21:53:55 +0000 |
commit | 75f791da8f28f575f9772180f3a31841814fe817 (patch) | |
tree | 1fd8f03677abc4f948c5ee66d0199d8b99db5e7c /src | |
parent | 1a98f1404bd44579954358aa95dbb3c45c84f3f3 (diff) | |
download | profani-tty-75f791da8f28f575f9772180f3a31841814fe817.tar.gz |
Free hash table keys before modifying hash table
Diffstat (limited to 'src')
-rw-r--r-- | src/ui/windows.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ui/windows.c b/src/ui/windows.c index 5ecada12..5993df19 100644 --- a/src/ui/windows.c +++ b/src/ui/windows.c @@ -408,9 +408,9 @@ wins_new_xmlconsole(void) { GList *keys = g_hash_table_get_keys(windows); int result = get_next_available_win_num(keys); + g_list_free(keys); ProfWin *newwin = win_create_xmlconsole(); g_hash_table_insert(windows, GINT_TO_POINTER(result), newwin); - g_list_free(keys); return newwin; } @@ -419,9 +419,9 @@ wins_new_chat(const char * const barejid) { GList *keys = g_hash_table_get_keys(windows); int result = get_next_available_win_num(keys); + g_list_free(keys); ProfWin *newwin = win_create_chat(barejid); g_hash_table_insert(windows, GINT_TO_POINTER(result), newwin); - g_list_free(keys); return newwin; } @@ -430,9 +430,9 @@ wins_new_muc(const char * const roomjid) { GList *keys = g_hash_table_get_keys(windows); int result = get_next_available_win_num(keys); + g_list_free(keys); ProfWin *newwin = win_create_muc(roomjid); g_hash_table_insert(windows, GINT_TO_POINTER(result), newwin); - g_list_free(keys); return newwin; } @@ -441,9 +441,9 @@ wins_new_muc_config(const char * const roomjid, DataForm *form) { GList *keys = g_hash_table_get_keys(windows); int result = get_next_available_win_num(keys); + g_list_free(keys); ProfWin *newwin = win_create_muc_config(roomjid, form); g_hash_table_insert(windows, GINT_TO_POINTER(result), newwin); - g_list_free(keys); return newwin; } @@ -452,9 +452,9 @@ wins_new_private(const char * const fulljid) { GList *keys = g_hash_table_get_keys(windows); int result = get_next_available_win_num(keys); + g_list_free(keys); ProfWin *newwin = win_create_private(fulljid); g_hash_table_insert(windows, GINT_TO_POINTER(result), newwin); - g_list_free(keys); return newwin; } |