summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiang, Haihao <haihao.xiang@intel.com>2015-06-10 14:41:14 +0800
committerXiang, Haihao <haihao.xiang@intel.com>2015-06-24 13:23:53 +0800
commitda48f300e691d2ed205888ace1b87090f642fb2d (patch)
treedea4be771b14f9924e62685d6357f5f41f1dad92
parenteaaa4e76b1ad935a9a728805de9345d372d4046c (diff)
downloadlibva-da48f300e691d2ed205888ace1b87090f642fb2d.tar.gz
test/decode/tinyjpeg: make sure the pointer is valid before dereferencing it
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com> Reviewed-by: Sean V Kelley <seanvk@posteo.de> (cherry picked from commit 8455834161bab3374fe9756fd4a28d919027daf7)
-rw-r--r--test/decode/tinyjpeg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/decode/tinyjpeg.c b/test/decode/tinyjpeg.c
index 33dcdc6..f53d083 100644
--- a/test/decode/tinyjpeg.c
+++ b/test/decode/tinyjpeg.c
@@ -387,7 +387,7 @@ static int parse_DRI(struct jdec_private *priv, const unsigned char *stream)
static int findEOI(struct jdec_private *priv,const unsigned char *stream)
{
- while (!(*stream == 0xff && *(stream+1) == 0xd9 )&& stream<=priv->stream_end) //searching for the end of image marker
+ while (stream<=priv->stream_end&& !(*stream == 0xff && *(stream+1) == 0xd9 )) //searching for the end of image marker
{
stream++;
continue;