Clean up keys after using parse_options

This commit is contained in:
James Booth
2014-04-14 23:41:45 +01:00
parent 3e69d6b71e
commit 79088d0150
2 changed files with 11 additions and 0 deletions

View File

@@ -93,6 +93,7 @@ cmd_connect(gchar **args, struct cmd_help_t help)
}
options_destroy(options);
g_list_free(opt_keys);
char *user = args[0];
char *lower = g_utf8_strdown(user, -1);
@@ -1587,6 +1588,7 @@ cmd_join(gchar **args, struct cmd_help_t help)
passwd = g_hash_table_lookup(options, "password");
options_destroy(options);
g_list_free(opt_keys);
// In the case that a nick wasn't provided by the optional args...
if (nick == NULL) {