]> granicus.if.org Git - libexpat/commitdiff
Add initialization to avoid warning
authorJames Clark <jjc@jclark.com>
Wed, 2 Jun 1999 11:12:21 +0000 (11:12 +0000)
committerJames Clark <jjc@jclark.com>
Wed, 2 Jun 1999 11:12:21 +0000 (11:12 +0000)
expat/xmltok/xmltok_impl.c

index 556007a118c1ca8a840baffba0e1350e9d9d32b9..40962654405e6a1630ca9813d319121d4b1c6597 100755 (executable)
@@ -1391,7 +1391,8 @@ int PREFIX(getAtts)(const ENCODING *enc, const char *ptr,
 {
   enum { other, inName, inValue } state = inName;
   int nAtts = 0;
-  int open; /* defined when state == inValue */
+  int open = 0; /* defined when state == inValue;
+                  initialization just to shut up compilers */
 
   for (ptr += MINBPC(enc);; ptr += MINBPC(enc)) {
     switch (BYTE_TYPE(enc, ptr)) {