From 4eb2a7199cef7342d459eab28c8d85ddc0df226a Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Mon, 9 May 2011 15:12:52 +0200 Subject: [PATCH] Bug fix: iso_write_opts_set_system_area() with system area types 1=MIPS Big Endian and 2=MIPS Little Endian caused SIGSEGV. --- libisofs/ecma119.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libisofs/ecma119.c b/libisofs/ecma119.c index f7ea2b2..165e263 100644 --- a/libisofs/ecma119.c +++ b/libisofs/ecma119.c @@ -1398,7 +1398,7 @@ static void *write_function(void *arg) { int res, first_partition = 1, last_partition = 0, sa_type; - size_t i; + int i; IsoImageWriter *writer; Ecma119Image *target = (Ecma119Image*)arg;