From 97ec8457c63c3dc6b54a2390e75d6215b88b85f8 Mon Sep 17 00:00:00 2001 From: Than Ngo Date: Wed, 10 Feb 2021 11:31:02 +0100 Subject: [PATCH] fix typo --- doxygen-1.9.1-crash_in_docparser.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doxygen-1.9.1-crash_in_docparser.patch b/doxygen-1.9.1-crash_in_docparser.patch index f1308fa..adcd144 100644 --- a/doxygen-1.9.1-crash_in_docparser.patch +++ b/doxygen-1.9.1-crash_in_docparser.patch @@ -6,7 +6,7 @@ diff -up doxygen-1.9.1/src/docparser.cpp.me doxygen-1.9.1/src/docparser.cpp g_initialStyleStack.push(sc); g_styleStack.pop(); - sc = g_styleStack.top(); -+ sc = !g_styleStack.empty() ? g_styleStack.top() : 0; ++ sc = !g_styleStack.isEmpty() ? g_styleStack.top() : 0; } } }