diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-05-28 20:48:21 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2011-05-28 20:48:21 +0200 |
commit | b0b0cddaff10b4cff371b8bb7aa21e045f8e3915 (patch) | |
tree | 10f178f4d8cb6ad5b80cba3590d9dc0107027655 /src/gif.c | |
parent | 1351b8d80044b898f92557e7ff90096deee5f5bc (diff) | |
parent | b99998a37d3ab1336d0ce82ddc60d0c406a2fd1b (diff) |
merge
Diffstat (limited to 'src/gif.c')
-rw-r--r-- | src/gif.c | 14 |
1 files changed, 1 insertions, 13 deletions
@@ -351,8 +351,6 @@ static size_t Gif_do_extension(DilloGif *gif, uint_t Label, return Gif_data_blocks(buf, BSize); case Txt_Ext: /* Plain text Extension */ - /* This extension allows (rcm thinks) the image to be rendered as text. - */ case App_Ext: /* Application Extension */ default: return Gif_do_generic_ext(buf, BSize); /*Ignore Extension */ @@ -428,16 +426,6 @@ static void Gif_emit_line(DilloGif *gif, const uchar_t *linebuf) } /* - * I apologize for the large size of this routine and the goto error - * construct - I almost _never_ do that. I offer the excuse of - * optimizing for speed. - * - * RCM -- busted these down into smaller subroutines... still very hard to - * read. - */ - - -/* * Decode the packetized lwz bytes */ static void Gif_literal(DilloGif *gif, uint_t code) @@ -816,7 +804,7 @@ static size_t Gif_do_img_desc(DilloGif *gif, void *Buf, /* check max image size */ if (gif->Width <= 0 || gif->Height <= 0 || gif->Width > IMAGE_MAX_AREA / gif->Height) { - MSG("Gif_do_img_desc: suspicious image size request %ux%u\n", + MSG("Gif_do_img_desc: suspicious image size request %u x %u\n", gif->Width, gif->Height); gif->state = 999; return 0; |