Add missing return statement to out-of-memory condition. Fixes the warning:
authorDiego Biurrun <diego@biurrun.de>
Thu, 30 Apr 2009 10:21:22 +0000 (10:21 +0000)
committerDiego Biurrun <diego@biurrun.de>
Thu, 30 Apr 2009 10:21:22 +0000 (10:21 +0000)
libavcodec/motionpixels.c:302: warning: statement with no effect

Originally committed as revision 18718 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/motionpixels.c

index 6f9aac4..227b178 100644 (file)
@@ -299,7 +299,7 @@ static int mp_decode_frame(AVCodecContext *avctx,
     /* le32 bitstream msb first */
     av_fast_malloc(&mp->bswapbuf, &mp->bswapbuf_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
     if (!mp->bswapbuf)
-        AVERROR(ENOMEM);
+        return AVERROR(ENOMEM);
     mp->dsp.bswap_buf((uint32_t *)mp->bswapbuf, (const uint32_t *)buf, buf_size / 4);
     if (buf_size & 3)
         memcpy(mp->bswapbuf + (buf_size & ~3), buf + (buf_size & ~3), buf_size & 3);