diff options
author | vincentdarley <vincentdarley> | 2003-12-10 12:57:59 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2003-12-10 12:57:59 (GMT) |
commit | 76def108447a5b556912757777418ae8f14e8d91 (patch) | |
tree | 90d271d81d7ac0023e01e5078974e86950b94e72 /generic | |
parent | 3d332dfaf096c37d18523caeeed045444df36079 (diff) | |
download | tk-76def108447a5b556912757777418ae8f14e8d91.zip tk-76def108447a5b556912757777418ae8f14e8d91.tar.gz tk-76def108447a5b556912757777418ae8f14e8d91.tar.bz2 |
off-by-one error in recent cleanup fix
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tkTextTag.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextTag.c b/generic/tkTextTag.c index 4fb536a..b862d1b 100644 --- a/generic/tkTextTag.c +++ b/generic/tkTextTag.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkTextTag.c,v 1.16 2003/12/09 13:43:35 vincentdarley Exp $ + * RCS: @(#) $Id: tkTextTag.c,v 1.17 2003/12/10 12:57:59 vincentdarley Exp $ */ #include "default.h" @@ -1005,7 +1005,7 @@ TkTextFreeTag(textPtr, tagPtr) for (; i < textPtr->numCurTags-1; i++) { textPtr->curTagArrayPtr[i] = textPtr->curTagArrayPtr[i+1]; } - textPtr->curTagArrayPtr[textPtr->numCurTags] = NULL; + textPtr->curTagArrayPtr[textPtr->numCurTags-1] = NULL; textPtr->numCurTags--; break; } |