In gif encoder, fix uninitialized value, patch by Clément Bœsch, ubitux at gmail dot com

Originally committed as revision 26303 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Clément Bœsch 14 years ago committed by Baptiste Coudurier
parent e19e051e56
commit c56e71309e
  1. 2
      libavcodec/gif.c

@ -87,7 +87,7 @@ static int gif_image_write_image(AVCodecContext *avctx,
const uint8_t *buf, int linesize)
{
GIFContext *s = avctx->priv_data;
int len, height;
int len = 0, height;
const uint8_t *ptr;
/* image block */

Loading…
Cancel
Save