summaryrefslogtreecommitdiffstats
path: root/generic/tkTextIndex.c
diff options
context:
space:
mode:
authorhobbs <hobbs>2004-10-05 01:26:09 (GMT)
committerhobbs <hobbs>2004-10-05 01:26:09 (GMT)
commitbdbbd44f5ecfdef44242a059886d3ee31a840af3 (patch)
tree6fcd2c267e54c7505fd79612b8f41ec6c7cd7e53 /generic/tkTextIndex.c
parent0ad6f30a4743fdc26a62d4c0c8d677519f85b8c7 (diff)
downloadtk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.zip
tk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.tar.gz
tk-bdbbd44f5ecfdef44242a059886d3ee31a840af3.tar.bz2
fix init warnings
Diffstat (limited to 'generic/tkTextIndex.c')
-rw-r--r--generic/tkTextIndex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tkTextIndex.c b/generic/tkTextIndex.c
index b405880..ed52e98 100644
--- a/generic/tkTextIndex.c
+++ b/generic/tkTextIndex.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: tkTextIndex.c,v 1.19 2004/09/10 12:13:42 vincentdarley Exp $
+ * RCS: @(#) $Id: tkTextIndex.c,v 1.20 2004/10/05 01:26:10 hobbs Exp $
*/
#include "default.h"
@@ -731,7 +731,6 @@ GetIndex(interp, sharedPtr, textPtr, string, indexPtr, canCachePtr)
* we can cache the index (or NULL) */
{
char *p, *end, *endOfBase;
- Tcl_HashEntry *hPtr;
TkTextIndex first, last;
int wantLast, result;
char c;
@@ -777,6 +776,7 @@ GetIndex(interp, sharedPtr, textPtr, string, indexPtr, canCachePtr)
if (p != NULL) {
TkTextSearch search;
TkTextTag *tagPtr;
+ Tcl_HashEntry *hPtr = NULL;
CONST char *tagName;
if ((p[1] == 'f') && (strncmp(p+1, "first", 5) == 0)) {