Merge "dwebp: remove a dead store"

This commit is contained in:
James Zern 2013-12-07 13:38:42 -08:00 committed by Gerrit Code Review
commit f737f0376a

View File

@ -729,7 +729,7 @@ int main(int argc, const char *argv[]) {
if (idec == NULL) {
fprintf(stderr, "Failed during WebPINewDecoder().\n");
status = VP8_STATUS_OUT_OF_MEMORY;
ok = 0;
goto end;
} else {
status = WebPIUpdate(idec, data, data_size);
WebPIDelete(idec);