Blame SOURCES/doxygen-1.9.1-crash_in_docparser.patch

4fe1d2
diff -up doxygen-1.9.1/src/docparser.cpp.me doxygen-1.9.1/src/docparser.cpp
4fe1d2
--- doxygen-1.9.1/src/docparser.cpp.me	2021-02-10 10:52:09.481086282 +0100
4fe1d2
+++ doxygen-1.9.1/src/docparser.cpp	2021-02-10 10:55:32.418781686 +0100
4fe1d2
@@ -951,7 +951,7 @@ static void handlePendingStyleCommands(D
4fe1d2
       children.append(new DocStyleChange(parent,g_nodeStack.count(),sc->style(),sc->tagName(),FALSE));
4fe1d2
       g_initialStyleStack.push(sc);
4fe1d2
       g_styleStack.pop();
4fe1d2
-      sc = g_styleStack.top();
4fe1d2
+      sc = !g_styleStack.isEmpty() ? g_styleStack.top() : 0;
4fe1d2
     }
4fe1d2
   }
4fe1d2
 }