mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Free string after setting theme ui preference, fixed valgrind warning
This commit is contained in:
parent
f486b5884b
commit
05664ef009
@ -390,6 +390,7 @@ _set_string_preference(char *prefstr, preference_t pref)
|
||||
if (g_key_file_has_key(theme, "ui", prefstr, NULL)) {
|
||||
gchar *val = g_key_file_get_string(theme, "ui", prefstr, NULL);
|
||||
prefs_set_string(pref, val);
|
||||
g_free(val);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -114,14 +114,14 @@ prof_run(const int disable_tls, char *log_level, char *account_name)
|
||||
g_timer_start(timer);
|
||||
}
|
||||
|
||||
ch = ui_get_char(inp, &size, &result);
|
||||
|
||||
ui_handle_special_keys(&ch, result);
|
||||
#ifdef HAVE_LIBOTR
|
||||
otr_poll();
|
||||
#endif
|
||||
jabber_process_events();
|
||||
ui_update();
|
||||
|
||||
ch = ui_get_char(inp, &size, &result);
|
||||
}
|
||||
|
||||
inp[size++] = '\0';
|
||||
|
Loading…
Reference in New Issue
Block a user