Set objects ->type = 0 when freeing to make sure we notice immediately if

they're being used after freed.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2399 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-02-07 19:17:36 +00:00 committed by cras
commit 0141801e2d
3 changed files with 9 additions and 1 deletions

View file

@ -75,6 +75,8 @@ void channel_destroy(CHANNEL_REC *channel)
g_free_not_null(channel->key);
g_free(channel->mode);
g_free(channel->name);
channel->type = 0;
g_free(channel);
}