summaryrefslogtreecommitdiffstats
path: root/src/tools
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@digia.com>2014-05-14 14:17:37 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-28 16:52:04 +0200
commit52ff4120a29e915215ea06499ae08e17ba997074 (patch)
tree21cebbb9a1588afdc5b673540555b6fcbda0fc33 /src/tools
parent9857da723dc9e7795b84de106d8bfb6ef9456090 (diff)
Fix Null pointer dereferencing in an error handler
identified by static analysis from http://www.viva64.com/en/b/0251/ Change-Id: I0042336d9598415b978bf9819e74639685c627b5 Reviewed-by: Martin Smith <martin.smith@digia.com>
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/qdoc/qdocindexfiles.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/qdoc/qdocindexfiles.cpp b/src/tools/qdoc/qdocindexfiles.cpp
index 47e302dad6..00c9c55020 100644
--- a/src/tools/qdoc/qdocindexfiles.cpp
+++ b/src/tools/qdoc/qdocindexfiles.cpp
@@ -536,7 +536,7 @@ void QDocIndexFiles::readIndexSection(const QDomElement& element,
}
else {
qDebug() << "NODE:" << node->name() << "GROUPS:" << groupNames;
- qDebug() << "DID NOT FIND GROUP:" << dn->name() << "for:" << node->name();
+ qDebug() << "DID NOT FIND GROUP for:" << node->name();
}
}
}