summaryrefslogtreecommitdiff
path: root/jpegxr
diff options
context:
space:
mode:
authorRobin Watts <Robin.Watts@artifex.com>2019-11-15 18:49:23 +0000
committerRobin Watts <Robin.Watts@artifex.com>2019-11-15 18:59:21 +0000
commit161adc70e0d6625618c5a6afcb5e04161acc2e2c (patch)
treefcf60fe2fd888e9e047e111543147109cedc9a32 /jpegxr
parentb8de03bdb8696517bff0259e827ece4f5746663c (diff)
downloadghostpdl-161adc70e0d6625618c5a6afcb5e04161acc2e2c.tar.gz
Squash a warning about an ininitialised variable.
Diffstat (limited to 'jpegxr')
-rw-r--r--jpegxr/cw_emit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/jpegxr/cw_emit.c b/jpegxr/cw_emit.c
index cda26feed..cefa11a16 100644
--- a/jpegxr/cw_emit.c
+++ b/jpegxr/cw_emit.c
@@ -133,7 +133,7 @@ int jxrc_set_separate_alpha_image_plane(jxr_container_t cp, unsigned int alpha_p
static void emit_ifd(jxr_container_t cp)
{
- unsigned long ifd_mark;
+ unsigned long ifd_mark = 0;
int idx;
struct ifd_table ifd[64];
unsigned char buf[1024];