summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Anaszewski <j.anaszewski@samsung.com>2014-10-10 10:43:14 +0200
committerJacek Anaszewski <j.anaszewski@samsung.com>2014-11-05 16:05:30 +0100
commitff27f3cefe154df689bc555f81138b66ef4952f3 (patch)
tree63432eda00dd6ae420d0b315732c21429fb73687
parent24ccdfc15c6fba0b5cb3107b7d8a8398e89367f6 (diff)
downloadlinux-3.10-ff27f3cefe154df689bc555f81138b66ef4952f3.tar.gz
linux-3.10-ff27f3cefe154df689bc555f81138b66ef4952f3.tar.bz2
linux-3.10-ff27f3cefe154df689bc555f81138b66ef4952f3.zip
s5p-jpeg: Avoid -Wuninitialized warning in s5p_jpeg_parse_hdr
Initialize components variable in order to avoid the possibility of using it uninitialized. Change-Id: Ib1c9c11d1fc94aa5aa4e28f24819b32d6dd1ee5c Signed-off-by: Jacek Anaszewski <j.anaszewski@samsung.com>
-rw-r--r--drivers/media/platform/s5p-jpeg/jpeg-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/s5p-jpeg/jpeg-core.c b/drivers/media/platform/s5p-jpeg/jpeg-core.c
index e66acbc2a82..91dc35186c5 100644
--- a/drivers/media/platform/s5p-jpeg/jpeg-core.c
+++ b/drivers/media/platform/s5p-jpeg/jpeg-core.c
@@ -893,7 +893,7 @@ static bool s5p_jpeg_parse_hdr(struct s5p_jpeg_q_data *result,
unsigned long buffer, unsigned long size,
struct s5p_jpeg_ctx *ctx)
{
- int c, components, notfound;
+ int c, components = 0, notfound;
unsigned int height, width, word, subsampling = 0;
long length;
struct s5p_jpeg_buffer jpeg_buffer;