1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-11-03 19:37:16 -05:00

Fix segfault for urlopen[1]

This commit is contained in:
William Wennerström 2020-12-07 16:46:44 +01:00
parent 332dc87ca5
commit 7f0165a912
No known key found for this signature in database
GPG Key ID: E1382990BEDD319B

View File

@ -2075,7 +2075,7 @@ cons_executable_setting(void)
//TODO: there needs to be a way to get all the "locales"/schemes so we can
//display the default openers for all filetypes
char* urlopen = prefs_get_string_with_option(PREF_URL_OPEN_CMD, "");
cons_show("Default '/url open' command (/executable urlopen) : %s", urlopen[1]);
cons_show("Default '/url open' command (/executable urlopen) : %s", urlopen);
g_free(urlopen);
char* urlsave = prefs_get_string(PREF_URL_SAVE_CMD);