mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-10 05:02:50 +01:00
fix crash after reloading script
This commit is contained in:
parent
44a2ed5a97
commit
541f221a61
@ -2156,7 +2156,7 @@ Command_PyReload(char *name)
|
||||
if (!plugin) {
|
||||
hexchat_print(ph, "Can't find a python plugin with that name");
|
||||
} else {
|
||||
char *filename = strdup(plugin->filename);
|
||||
char *filename = g_strdup(plugin->filename);
|
||||
Command_PyUnload(filename);
|
||||
Command_PyLoad(filename);
|
||||
/* cppcheck-suppress deallocDealloc */
|
||||
|
Loading…
Reference in New Issue
Block a user