[srvx-commits] CVS: services/src proto-p10.c,1.74,1.75
Brought to you by:
entrope
From: Entrope <en...@us...> - 2003-08-20 08:26:54
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv21783/src Modified Files: proto-p10.c Log Message: fix very stupid crash bug Index: proto-p10.c =================================================================== RCS file: /cvsroot/srvx/services/src/proto-p10.c,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -r1.74 -r1.75 *** proto-p10.c 19 Aug 2003 22:56:33 -0000 1.74 --- proto-p10.c 20 Aug 2003 00:35:21 -0000 1.75 *************** *** 1339,1343 **** static void remove_unbursted_channel(struct chanNode *cNode) { ! dict_remove(unbursted_channels, cNode->name); } --- 1339,1345 ---- static void remove_unbursted_channel(struct chanNode *cNode) { ! if (unbursted_channels) { ! dict_remove(unbursted_channels, cNode->name); ! } } |