rev 444 - trunk

[email protected] Sun, 18 Dec 2005 10:12:34 -0800 (PST)
Newsgroups gmane.comp.printing.ghostscript.jbig2dec.cvs
Message-ID <[email protected]>
Author: giles
Date: 2005-12-18 10:12:33 -0800 (Sun, 18 Dec 2005)
New Revision: 444

Modified:
   trunk/jbig2_text.c
Log:
Correct an invalid return value. Thanks to Leonardo for pointing this=20
out.


Modified: trunk/jbig2_text.c
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- trunk/jbig2_text.c	2005-12-06 01:50:08 UTC (rev 443)
+++ trunk/jbig2_text.c	2005-12-18 18:12:33 UTC (rev 444)
@@ -252,7 +252,7 @@
 	if (SBSYMCODES =3D=3D NULL) {
 	    jbig2_error(ctx, JBIG2_SEVERITY_FATAL, segment->number,
 		"could not construct Symbol ID huffman table!");
-	    return NULL;
+	    return -1;
 	}
     }
=20