fix crash after reloading script

This commit is contained in:
TingPing 2013-04-13 02:01:04 -03:00
parent 44a2ed5a97
commit 541f221a61
1 changed files with 1 additions and 1 deletions

View File

@ -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 */