]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
media: s5p-jpeg: Handle parsing error in s5p_jpeg_parse_hdr()
authorThierry Escande <thierry.escande@collabora.com>
Fri, 30 Jun 2017 14:15:42 +0000 (10:15 -0400)
committerMauro Carvalho Chehab <mchehab@s-opensource.com>
Wed, 26 Jul 2017 12:30:04 +0000 (08:30 -0400)
This patch modifies the s5p_jpeg_parse_hdr() function so it only
modifies the passed s5p_jpeg_q_data structure if the jpeg header parsing
is successful.

Signed-off-by: Thierry Escande <thierry.escande@collabora.com>
Acked-by: Andrzej Pietrasiewicz <andrzej.p@samsung.com>
Acked-by: Jacek Anaszewski <jacek.anaszewski@gmail.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
drivers/media/platform/s5p-jpeg/jpeg-core.c

index 4c672a0f1418659c584268f95884911e5c3a1dc3..955cc6e6a2cfca2e0e7025be5518dbc000f4cfa8 100644 (file)
@@ -1206,22 +1206,9 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result,
                        break;
                }
        }
-       result->w = width;
-       result->h = height;
-       result->sos = sos;
-       result->dht.n = n_dht;
-       while (n_dht--) {
-               result->dht.marker[n_dht] = dht[n_dht];
-               result->dht.len[n_dht] = dht_len[n_dht];
-       }
-       result->dqt.n = n_dqt;
-       while (n_dqt--) {
-               result->dqt.marker[n_dqt] = dqt[n_dqt];
-               result->dqt.len[n_dqt] = dqt_len[n_dqt];
-       }
-       result->sof = sof;
-       result->sof_len = sof_len;
-       result->size = result->components = components;
+
+       if (notfound || !sos)
+               return false;
 
        switch (subsampling) {
        case 0x11:
@@ -1240,7 +1227,24 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result,
                return false;
        }
 
-       return !notfound && sos;
+       result->w = width;
+       result->h = height;
+       result->sos = sos;
+       result->dht.n = n_dht;
+       while (n_dht--) {
+               result->dht.marker[n_dht] = dht[n_dht];
+               result->dht.len[n_dht] = dht_len[n_dht];
+       }
+       result->dqt.n = n_dqt;
+       while (n_dqt--) {
+               result->dqt.marker[n_dqt] = dqt[n_dqt];
+               result->dqt.len[n_dqt] = dqt_len[n_dqt];
+       }
+       result->sof = sof;
+       result->sof_len = sof_len;
+       result->size = result->components = components;
+
+       return true;
 }
 
 static int s5p_jpeg_querycap(struct file *file, void *priv,