check VP8LBitWriterInit return

Change-Id: I460906281598f5792bd75a25b14b449c8daaff8c
This commit is contained in:
James Zern
2012-07-31 12:11:40 -07:00
parent cbfa9eecf4
commit 183cba83a7
2 changed files with 6 additions and 3 deletions

View File

@ -1057,7 +1057,10 @@ int VP8LEncodeImage(const WebPConfig* const config,
width = picture->width;
height = picture->height;
VP8LBitWriterInit(&bw, (width * height) >> 1);
if (!VP8LBitWriterInit(&bw, (width * height) >> 1)) {
err = VP8_ENC_ERROR_OUT_OF_MEMORY;
goto Error;
}
if (!WebPReportProgress(picture, 1, &percent)) {
UserAbort: