summaryrefslogtreecommitdiffstats
path: root/generic/tclBinary.c
diff options
context:
space:
mode:
authordas <das>2003-12-17 18:38:28 (GMT)
committerdas <das>2003-12-17 18:38:28 (GMT)
commit6909c4462beaf6bfe020c7c2edf0a8d4d0f8e79d (patch)
treec0bbe70a68e36150ccd8355425e43a895d7d8f9a /generic/tclBinary.c
parente6755ddde4faa78aa7f831e7be20021a2ea1565a (diff)
downloadtcl-6909c4462beaf6bfe020c7c2edf0a8d4d0f8e79d.zip
tcl-6909c4462beaf6bfe020c7c2edf0a8d4d0f8e79d.tar.gz
tcl-6909c4462beaf6bfe020c7c2edf0a8d4d0f8e79d.tar.bz2
* generic/tclBinary.c (DeleteScanNumberCache): fixed crashing bug
when numeric scan-value cache contains NULL value.
Diffstat (limited to 'generic/tclBinary.c')
-rw-r--r--generic/tclBinary.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclBinary.c b/generic/tclBinary.c
index 6769b4e..546a35b 100644
--- a/generic/tclBinary.c
+++ b/generic/tclBinary.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBinary.c,v 1.13.2.1 2003/12/02 09:31:54 dkf Exp $
+ * RCS: @(#) $Id: tclBinary.c,v 1.13.2.2 2003/12/17 18:38:28 das Exp $
*/
#include "tclInt.h"
@@ -1736,7 +1736,9 @@ DeleteScanNumberCache(numberCachePtr)
while (hEntry != NULL) {
register Tcl_Obj *value = (Tcl_Obj *) Tcl_GetHashValue(hEntry);
- Tcl_DecrRefCount(value);
+ if (value != NULL) {
+ Tcl_DecrRefCount(value);
+ }
hEntry = Tcl_NextHashEntry(&search);
}
Tcl_DeleteHashTable(numberCachePtr);