From c5049dc6f6beea21db4314fc380d3d6de2914845 Mon Sep 17 00:00:00 2001 From: kramm Date: Sat, 16 Feb 2002 17:46:11 +0000 Subject: [PATCH] bugfix: slave files smaller than master files caused a segfault. --- src/combine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/combine.c b/src/combine.c index 4847a58..34ea6b5 100644 --- a/src/combine.c +++ b/src/combine.c @@ -84,7 +84,7 @@ void jpeg_assert() pos++; } pos = 0; - while(master.tags[pos].id != 0) + while(slave.tags[pos].id != 0) { if(slave.tags[pos].id == TAGID_JPEGTABLES) spos = pos; -- 1.7.10.4