mirror of
https://github.com/irssi/irssi.git
synced 2026-08-17 23:52:22 +02:00
/SCRIPT RESET didn't work properly (start/stop functions were called in
wrong order). Added a few extra deinits. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1712 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
1db558b8ea
commit
b80d4e62ab
3 changed files with 7 additions and 3 deletions
|
|
@ -561,12 +561,15 @@ void perl_common_stop(void)
|
|||
{
|
||||
g_hash_table_foreach(iobject_stashes, (GHFunc) free_iobject_hash, NULL);
|
||||
g_hash_table_destroy(iobject_stashes);
|
||||
iobject_stashes = NULL;
|
||||
|
||||
g_hash_table_foreach(plain_stashes, (GHFunc) g_free, NULL);
|
||||
g_hash_table_destroy(plain_stashes);
|
||||
plain_stashes = NULL;
|
||||
|
||||
g_slist_foreach(use_protocols, (GFunc) g_free, NULL);
|
||||
g_slist_free(use_protocols);
|
||||
g_slist_free(use_protocols);
|
||||
use_protocols = NULL;
|
||||
|
||||
signal_remove("chat protocol created", (SIGNAL_FUNC) perl_register_protocol);
|
||||
signal_remove("chat protocol destroyed", (SIGNAL_FUNC) perl_unregister_protocol);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue