diff options
| author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-06-01 12:06:54 (GMT) |
|---|---|---|
| committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2011-06-01 12:06:54 (GMT) |
| commit | dd38c6bae00bf1fe4b756e575cec406d1c0ee08f (patch) | |
| tree | e35c258218b20d4c29d1623b0ff5d5e64b7d8bed | |
| parent | 42c31d07397063acca8e6d97a48105086604cb71 (diff) | |
| download | tcl-dd38c6bae00bf1fe4b756e575cec406d1c0ee08f.zip tcl-dd38c6bae00bf1fe4b756e575cec406d1c0ee08f.tar.gz tcl-dd38c6bae00bf1fe4b756e575cec406d1c0ee08f.tar.bz2 | |
fix for [Bug 3309871]: Valgrind finds: invalid read in TclMaxListLength()
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | generic/tclUtil.c | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2011-06-01 Jan Nijtmans <nijtmans@users.sf.net> + + * generic/tclUtil.c: fix for [Bug 3309871]: Valgrind finds: + invalid read in TclMaxListLength() + 2011-05-25 Don Porter <dgp@users.sourceforge.net> * library/msgcat/msgcat.tcl: Backport improvements to msgcat diff --git a/generic/tclUtil.c b/generic/tclUtil.c index b00489d..9a23291 100644 --- a/generic/tclUtil.c +++ b/generic/tclUtil.c @@ -409,8 +409,8 @@ TclMaxListLength( do { bytes++; numBytes -= (numBytes != -1); - } while (numBytes && TclIsSpaceProc(*bytes)); - if (numBytes == 0) { + } while (numBytes && (*bytes != '\0') && TclIsSpaceProc(*bytes)); + if ((numBytes == 0) || (*bytes == '\0')) { break; } /* (*bytes) is non-space; return to counting state */ |
