From 695eead15e0daf9bcfee5cc0b1b8e07f21a8d3e8 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Note Date: Sat, 29 Dec 2007 18:53:58 +0100 Subject: [PATCH] [bit2pdf] Fix uninitialized variable --- bit2pdf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bit2pdf.c b/bit2pdf.c index 39c9276..d6b46fb 100644 --- a/bit2pdf.c +++ b/bit2pdf.c @@ -109,7 +109,7 @@ draw_bitstream(const bitstream_analyzed_t *nlz, const gchar *lofile, chip_descr_t *chip = nlz->chip; cairo_surface_t *sr; cairo_t *cr; - int err; + int err = 0; /* extract size from chip size */ switch (out) {