[jbig2-cvs] rev 246 - trunk
giles@ghostscript.com
giles@ghostscript.com
Mon, 5 May 2003 10:23:28 -0700
Author: giles
Date: 2003-05-05 10:23:28 -0700 (Mon, 05 May 2003)
New Revision: 246
Modified:
trunk/jbig2_text.c
Log:
Avoid a (spurious) uninitialized variable warning.
Modified: trunk/jbig2_text.c
==============================================================================
--- trunk/jbig2_text.c (original)
+++ trunk/jbig2_text.c Mon May 5 10:23:28 2003
@@ -324,7 +324,7 @@
Jbig2SymbolDict **dicts;
int n_dicts;
uint16_t flags;
- uint16_t huffman_flags;
+ uint16_t huffman_flags = 0;
int8_t sbrat[4];
int code;