From 2439c9b2db63d4497643e031d138aaf80916ab8c Mon Sep 17 00:00:00 2001 From: Alexander Date: Wed, 23 Aug 2017 23:09:50 +0300 Subject: [PATCH] =?UTF-8?q?possible=20fix=20I=E2=86=92I=20and=20L=E2=86=92?= =?UTF-8?q?L=20unpacking=20on=20bigendian?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- libImaging/Unpack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libImaging/Unpack.c b/libImaging/Unpack.c index 05f98095d..b0fba0a79 100644 --- a/libImaging/Unpack.c +++ b/libImaging/Unpack.c @@ -1318,7 +1318,7 @@ static struct { {"HSV", "V", 8, band2}, /* integer variations */ - {"I", "I", 32, copy4}, + {"I", "I", 32, unpackI32}, {"I", "I;8", 8, unpackI8}, {"I", "I;8S", 8, unpackI8S}, {"I", "I;16", 16, unpackI16}, @@ -1335,7 +1335,7 @@ static struct { {"I", "I;32NS", 32, unpackI32NS}, /* floating point variations */ - {"F", "F", 32, copy4}, + {"F", "F", 32, unpackI32}, {"F", "F;8", 8, unpackF8}, {"F", "F;8S", 8, unpackF8S}, {"F", "F;16", 16, unpackF16},