From 04c1aee829d396a8ce28852cf98eadadf2a5da17 Mon Sep 17 00:00:00 2001 From: Angel Nunez Mencias Date: Sun, 12 May 2013 01:56:15 +0200 Subject: [PATCH] Check qtables NULL pointer --- encode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/encode.c b/encode.c index 90a8095fc..bc0bc495e 100644 --- a/encode.c +++ b/encode.c @@ -519,7 +519,7 @@ static unsigned int** get_qtables_arrays(PyObject* qtables) { int i, j, num_tables; unsigned int **qarrays; - if (qtables == Py_None) { + if ((qtables == NULL) || (qtables == Py_None)) { return NULL; } @@ -589,7 +589,7 @@ PyImaging_JpegEncoderNew(PyObject* self, PyObject* args) int streamtype = 0; /* 0=interchange, 1=tables only, 2=image only */ int xdpi = 0, ydpi = 0; int subsampling = -1; /* -1=default, 0=none, 1=medium, 2=high */ - PyObject* qtables; + PyObject* qtables=NULL; unsigned int **qarrays = NULL; char* extra = NULL; int extra_size;