Commit 7f58eb3c authored by Stefano Sabatini's avatar Stefano Sabatini

indeo3: release buffer in indeo3_decode_end()

Fix leak.
parent 5443812f
......@@ -1137,6 +1137,9 @@ static av_cold int indeo3_decode_end(AVCodecContext *avctx)
iv_free_func(s);
if (s->frame.data[0])
avctx->release_buffer(avctx, &s->frame);
return 0;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment