diff --git a/tools/target_dec_fuzzer.c b/tools/target_dec_fuzzer.c
index ed9cbeaec84404f65bfa03b1f4ca3a13f21a170a..3146bf2c1a1e8dddd05c956749795f927a3fbb2f 100644
--- a/tools/target_dec_fuzzer.c
+++ b/tools/target_dec_fuzzer.c
@@ -190,6 +190,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
     int res = avcodec_open2(ctx, c, NULL);
     if (res < 0) {
         av_free(ctx);
+        av_free(parser_avctx);
         return 0; // Failure of avcodec_open2() does not imply that a issue was found
     }