summaryrefslogtreecommitdiffstats
path: root/src/corelib/plugin
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2012-07-30 11:55:46 +0200
committerQt by Nokia <qt-info@nokia.com>2012-07-30 13:55:49 +0200
commit3bbe09626077576299df790db329bdd5c51be7fe (patch)
treee294f82e3b7bf5804969a93ddcf47fd9c32a2ec7 /src/corelib/plugin
parent4baa7d173d88bb1bc2bed51880ef9b0b1bb831a4 (diff)
Check for 0 before accessing the pointer
Fixes some reported crashes where we get into qt_tokenize() with a 0 pointer. Not relevant for Qt 5, as qt_tokenize() doesn't exist there. Task-number: QTBUG-26247 Change-Id: I1cc5c5b514c1c35dfee318ad4d37a54deffc5d53 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/corelib/plugin')
-rw-r--r--src/corelib/plugin/qlibrary.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/corelib/plugin/qlibrary.cpp b/src/corelib/plugin/qlibrary.cpp
index 185ba74567..7e691bdeae 100644
--- a/src/corelib/plugin/qlibrary.cpp
+++ b/src/corelib/plugin/qlibrary.cpp
@@ -198,6 +198,9 @@ struct qt_token_info
static int qt_tokenize(const char *s, ulong s_len, ulong *advance,
qt_token_info &token_info)
{
+ if (!s)
+ return -1;
+
ulong pos = 0, field = 0, fieldlen = 0;
char current;
int ret = -1;