From 718d73c023b765f1434edb5def188847b4cc044a Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 16 Jun 2020 10:32:27 -0500 Subject: Ryan Prichard reported that file wasn't getting gif heights right. --- toys/posix/file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys/posix') diff --git a/toys/posix/file.c b/toys/posix/file.c index a1de9168..6fa51102 100644 --- a/toys/posix/file.c +++ b/toys/posix/file.c @@ -226,7 +226,7 @@ static void do_regular_file(int fd, char *name) // https://www.w3.org/Graphics/GIF/spec-gif89a.txt } else if (len>16 && (strstart(&s, "GIF87a") || strstart(&s, "GIF89a"))) xprintf("GIF image data, %d x %d\n", - (int)peek_le(s, 2), (int)peek_le(s+8, 2)); + (int)peek_le(s, 2), (int)peek_le(s+2, 2)); // TODO: parsing JPEG for width/height is harder than GIF or PNG. else if (len>32 && !memcmp(toybuf, "\xff\xd8", 2)) xputs("JPEG image data"); -- cgit v1.2.3