Skip to content
Snippets Groups Projects
Commit f0a75e66 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Add missing return statement to out-of-memory condition. Fixes the warning:

libavcodec/motionpixels.c:302: warning: statement with no effect

Originally committed as revision 18718 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 4c27207c
No related branches found
No related tags found
No related merge requests found
...@@ -299,7 +299,7 @@ static int mp_decode_frame(AVCodecContext *avctx, ...@@ -299,7 +299,7 @@ static int mp_decode_frame(AVCodecContext *avctx,
/* le32 bitstream msb first */ /* le32 bitstream msb first */
av_fast_malloc(&mp->bswapbuf, &mp->bswapbuf_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); av_fast_malloc(&mp->bswapbuf, &mp->bswapbuf_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
if (!mp->bswapbuf) if (!mp->bswapbuf)
AVERROR(ENOMEM); return AVERROR(ENOMEM);
mp->dsp.bswap_buf((uint32_t *)mp->bswapbuf, (const uint32_t *)buf, buf_size / 4); mp->dsp.bswap_buf((uint32_t *)mp->bswapbuf, (const uint32_t *)buf, buf_size / 4);
if (buf_size & 3) if (buf_size & 3)
memcpy(mp->bswapbuf + (buf_size & ~3), buf + (buf_size & ~3), buf_size & 3); memcpy(mp->bswapbuf + (buf_size & ~3), buf + (buf_size & ~3), buf_size & 3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment