mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-16 10:40:19 +00:00
fix crash after reloading script
This commit is contained in:
@@ -2156,7 +2156,7 @@ Command_PyReload(char *name)
|
|||||||
if (!plugin) {
|
if (!plugin) {
|
||||||
hexchat_print(ph, "Can't find a python plugin with that name");
|
hexchat_print(ph, "Can't find a python plugin with that name");
|
||||||
} else {
|
} else {
|
||||||
char *filename = strdup(plugin->filename);
|
char *filename = g_strdup(plugin->filename);
|
||||||
Command_PyUnload(filename);
|
Command_PyUnload(filename);
|
||||||
Command_PyLoad(filename);
|
Command_PyLoad(filename);
|
||||||
/* cppcheck-suppress deallocDealloc */
|
/* cppcheck-suppress deallocDealloc */
|
||||||
|
|||||||
Reference in New Issue
Block a user