Merge pull request #1492 from headshog/fix-ht-dec
authorEven Rouault <even.rouault@spatialys.com>
Fri, 8 Dec 2023 15:47:20 +0000 (16:47 +0100)
committerGitHub <noreply@github.com>
Fri, 8 Dec 2023 15:47:20 +0000 (16:47 +0100)
fix ht_dec.c:1215

src/lib/openjp2/ht_dec.c

index 120d7e49a17d2195beb7360de4b4301472dfb815..9ea061f37478dd8aa70b42a4cf910a0cac28722d 100644 (file)
@@ -1210,6 +1210,9 @@ OPJ_BOOL opj_t1_ht_decode_cblk(opj_t1_t *t1,
 
         /* Concatenate all chunks */
         cblkdata = t1->cblkdatabuffer;
+        if (cblkdata == NULL) {
+            return OPJ_FALSE;
+        }
         cblk_len = 0;
         for (i = 0; i < cblk->numchunks; i++) {
             memcpy(cblkdata + cblk_len, cblk->chunks[i].data, cblk->chunks[i].len);