hc
2024-01-03 2f7c68cb55ecb7331f2381deb497c27155f32faf
kernel/drivers/media/platform/coda/coda-jpeg.c
....@@ -1052,10 +1052,16 @@
10521052 v4l2_err(&dev->v4l2_dev, "error loading Huffman tables\n");
10531053 return ret;
10541054 }
1055
- if (!ctx->params.jpeg_qmat_tab[0])
1055
+ if (!ctx->params.jpeg_qmat_tab[0]) {
10561056 ctx->params.jpeg_qmat_tab[0] = kmalloc(64, GFP_KERNEL);
1057
- if (!ctx->params.jpeg_qmat_tab[1])
1057
+ if (!ctx->params.jpeg_qmat_tab[0])
1058
+ return -ENOMEM;
1059
+ }
1060
+ if (!ctx->params.jpeg_qmat_tab[1]) {
10581061 ctx->params.jpeg_qmat_tab[1] = kmalloc(64, GFP_KERNEL);
1062
+ if (!ctx->params.jpeg_qmat_tab[1])
1063
+ return -ENOMEM;
1064
+ }
10591065 coda_set_jpeg_compression_quality(ctx, ctx->params.jpeg_quality);
10601066
10611067 return 0;