diff options
author | Timo Sirainen <cras@irssi.org> | 2003-07-06 14:10:42 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2003-07-06 14:10:42 +0000 |
commit | 2b00fd58b74f8a964c3c58e12bdd2a4466a83a43 (patch) | |
tree | bb1878d05f8779539599e02e85cf9f97e52c0ca2 /src/perl/irc | |
parent | 14a626369056a1dca664ea3f299b614489a83059 (diff) | |
download | irssi-2b00fd58b74f8a964c3c58e12bdd2a4466a83a43.zip |
NOTIFYLIST_REC usage crashfix
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3122 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/perl/irc')
-rw-r--r-- | src/perl/irc/Irc.xs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/perl/irc/Irc.xs b/src/perl/irc/Irc.xs index d976ce9e..f73a92ff 100644 --- a/src/perl/irc/Irc.xs +++ b/src/perl/irc/Irc.xs @@ -134,8 +134,10 @@ static void perl_notifylist_fill_hash(HV *hv, NOTIFYLIST_REC *notify) hv_store(hv, "idle_check_time", 15, newSViv(notify->idle_check_time), 0); av = newAV(); - for (tmp = notify->ircnets; *tmp != NULL; tmp++) { - av_push(av, new_pv(*tmp)); + if (notify->ircnets != NULL) { + for (tmp = notify->ircnets; *tmp != NULL; tmp++) { + av_push(av, new_pv(*tmp)); + } } hv_store(hv, "ircnets", 7, newRV_noinc((SV*)av), 0); } |