summaryrefslogtreecommitdiff
path: root/libavcodec/jpeglsenc.c
diff options
context:
space:
mode:
authorVittorio Giovara <vittorio.giovara@gmail.com>2015-04-24 16:59:32 +0100
committerVittorio Giovara <vittorio.giovara@gmail.com>2015-04-28 16:27:16 +0100
commit3919a4572690894d0a7ad4170d699c52b4748194 (patch)
tree6b06a2862125d56be66a43cb7638173e3f54bf16 /libavcodec/jpeglsenc.c
parentf5ba67ee1342b7741200ff637fc3ea3387b68a1b (diff)
jpeglsenc: Check memory allocations
Convert exisiting free functions to av_freep() to avoid accidental double frees, and always intialize all buffers to NULL.
Diffstat (limited to 'libavcodec/jpeglsenc.c')
-rw-r--r--libavcodec/jpeglsenc.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/libavcodec/jpeglsenc.c b/libavcodec/jpeglsenc.c
index f7dec30956..2a24a5d375 100644
--- a/libavcodec/jpeglsenc.c
+++ b/libavcodec/jpeglsenc.c
@@ -253,7 +253,10 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
const int near = avctx->prediction_method;
PutBitContext pb, pb2;
GetBitContext gb;
- uint8_t *buf2, *zero, *cur, *last;
+ uint8_t *buf2 = NULL;
+ uint8_t *zero = NULL;
+ uint8_t *cur = NULL;
+ uint8_t *last = NULL;
JLSState *state;
int i, size, ret;
int comps;
@@ -271,6 +274,8 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
}
buf2 = av_malloc(pkt->size);
+ if (!buf2)
+ goto memfail;
init_put_bits(&pb, pkt->data, pkt->size);
init_put_bits(&pb2, buf2, pkt->size);
@@ -301,6 +306,9 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
put_bits(&pb, 8, 0); // point transform: none
state = av_mallocz(sizeof(JLSState));
+ if (!state)
+ goto memfail;
+
/* initialize JPEG-LS state from JPEG parameters */
state->near = near;
state->bpp = (avctx->pix_fmt == AV_PIX_FMT_GRAY16) ? 16 : 8;
@@ -309,8 +317,10 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
ls_store_lse(state, &pb);
- zero = av_mallocz(p->linesize[0]);
- last = zero;
+ zero = last = av_mallocz(p->linesize[0]);
+ if (!zero)
+ goto memfail;
+
cur = p->data[0];
if (avctx->pix_fmt == AV_PIX_FMT_GRAY8) {
int t = 0;
@@ -360,8 +370,8 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
}
}
- av_free(zero);
- av_free(state);
+ av_freep(&zero);
+ av_freep(&state);
/* the specification says that after doing 0xff escaping unused bits in
* the last byte must be set to 0, so just append 7 "optional" zero-bits
@@ -382,7 +392,7 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
}
}
avpriv_align_put_bits(&pb);
- av_free(buf2);
+ av_freep(&buf2);
/* End of image */
put_marker(&pb, EOI);
@@ -394,6 +404,13 @@ static int encode_picture_ls(AVCodecContext *avctx, AVPacket *pkt,
pkt->flags |= AV_PKT_FLAG_KEY;
*got_packet = 1;
return 0;
+
+memfail:
+ av_free_packet(pkt);
+ av_freep(&buf2);
+ av_freep(&state);
+ av_freep(&zero);
+ return AVERROR(ENOMEM);
}
static av_cold int encode_close(AVCodecContext *avctx)