Quick-fix stack overflow while fuzzing
This commit is contained in:
+4
-1
@@ -80,6 +80,7 @@ private:
|
|||||||
|
|
||||||
/* Cull or trim unused Topic nodes from leaf to root */
|
/* Cull or trim unused Topic nodes from leaf to root */
|
||||||
void trimTree(Topic *topic) {
|
void trimTree(Topic *topic) {
|
||||||
|
repeat:
|
||||||
if (!topic->subs.size() && !topic->children.size() && !topic->terminatingWildcardChild && !topic->wildcardChild) {
|
if (!topic->subs.size() && !topic->children.size() && !topic->terminatingWildcardChild && !topic->wildcardChild) {
|
||||||
Topic *parent = topic->parent;
|
Topic *parent = topic->parent;
|
||||||
|
|
||||||
@@ -114,7 +115,9 @@ private:
|
|||||||
delete topic;
|
delete topic;
|
||||||
|
|
||||||
if (parent != root) {
|
if (parent != root) {
|
||||||
trimTree(parent);
|
topic = parent;
|
||||||
|
goto repeat;
|
||||||
|
//trimTree(parent);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user