Merge "Fixing memory leak introduced in previous commit."

This commit is contained in:
Dmitry Kovalev 2014-04-07 16:13:04 -07:00 committed by Gerrit Code Review
commit 8eec5cad50

View File

@ -89,6 +89,8 @@ static vpx_codec_err_t decoder_destroy(vpx_codec_alg_priv_t *ctx) {
ctx->pbi = NULL;
}
vpx_free(ctx);
return VPX_CODEC_OK;
}