re-add some nullptr
to be safe since their removal within assert() or bools might have some impact I don't know
This commit is contained in:
@@ -207,13 +207,12 @@ ResultEntry::~ResultEntry()
|
||||
void ResultEntry::buildEntryName()
|
||||
{
|
||||
ResultEntry *parentEntry = this;
|
||||
while(parentEntry->parent)
|
||||
{
|
||||
ResultEntry *temp = parentEntry->parent;
|
||||
if (!temp->parent)
|
||||
break;
|
||||
parentEntry = parentEntry->parent;
|
||||
}
|
||||
while (parentEntry->parent != nullptr) {
|
||||
ResultEntry *temp = parentEntry->parent;
|
||||
if (!temp->parent)
|
||||
break;
|
||||
parentEntry = parentEntry->parent;
|
||||
}
|
||||
|
||||
QString stringOut;
|
||||
QTextStream stream(&stringOut);
|
||||
|
||||
Reference in New Issue
Block a user