1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00

added some debugging code to irssi_bless_iobject() - can it really be an

overflow? :)


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2590 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-03-13 00:40:12 +00:00 committed by cras
parent 65e87c9861
commit 7b1d5ed41a

View File

@ -99,8 +99,12 @@ SV *irssi_bless_iobject(int type, int chat_type, void *object)
PERL_OBJECT_REC *rec;
HV *stash, *hv;
g_return_val_if_fail((type & ~0xffff) == 0, NULL);
g_return_val_if_fail((chat_type & ~0xffff) == 0, NULL);
if ((type & ~0xffff) != 0) {
g_warning("BUG - id = %d, uniq. ID counter going in %d",
type, module_get_uniq_id("bug", 0));
return NULL;
}
rec = g_hash_table_lookup(iobject_stashes,
GINT_TO_POINTER(type | (chat_type << 16)));