Skip to content

Commit

Permalink
Merge pull request #1258 from sebras/fix-issue-1257
Browse files Browse the repository at this point in the history
openjp2: Plug memory leak when setting data as TLS fails.
  • Loading branch information
rouault committed Jun 22, 2020
2 parents 98150d0 + 79b199a commit e252438
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/lib/openjp2/t1.c
Expand Up @@ -1665,7 +1665,14 @@ static void opj_t1_clbl_decode_processor(void* user_data, opj_tls_t* tls)
opj_free(job);
return;
}
opj_tls_set(tls, OPJ_TLS_KEY_T1, t1, opj_t1_destroy_wrapper);
if (!opj_tls_set(tls, OPJ_TLS_KEY_T1, t1, opj_t1_destroy_wrapper)) {
opj_event_msg(job->p_manager, EVT_ERROR,
"Unable to set t1 handle as TLS\n");
opj_t1_destroy(t1);
*(job->pret) = OPJ_FALSE;
opj_free(job);
return;
}
}
t1->mustuse_cblkdatabuffer = job->mustuse_cblkdatabuffer;

Expand Down

0 comments on commit e252438

Please sign in to comment.