Fix possible nullptr dereferences.
parent
3726b2eef4
commit
88ccfedd10
|
@ -183,12 +183,18 @@ public:
|
||||||
/// @brief Will return the root node, const version.
|
/// @brief Will return the root node, const version.
|
||||||
/// @return The root node.
|
/// @return The root node.
|
||||||
const TNodeType getRootNode() const {
|
const TNodeType getRootNode() const {
|
||||||
|
if (nullptr == mDoc) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
return mDoc->root();
|
return mDoc->root();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @brief Will return the root node, non-const version.
|
/// @brief Will return the root node, non-const version.
|
||||||
/// @return The root node.
|
/// @return The root node.
|
||||||
TNodeType getRootNode() {
|
TNodeType getRootNode() {
|
||||||
|
if (nullptr == mDoc) {
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
return mDoc->root();
|
return mDoc->root();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue