summaryrefslogtreecommitdiffstats
path: root/source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-08-19 18:54:03 +0000
committer Eric Hameleers <alien@slackware.com>2021-08-20 08:59:54 +0200
commitf9358bffd0829cbe5da4270e16126484d71c2bb0 (patch)
treeb491f0e9c2da5bee3c4318ef68107f07c3f6209c /source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch
parentcbe41bb716d11b2258c713cb0a8001e30d57a784 (diff)
downloadcurrent-20210819185403.tar.gz
current-20210819185403.tar.xz
Thu Aug 19 18:54:03 UTC 202120210819185403
a/cryptsetup-2.4.0-x86_64-1.txz: Upgraded. ap/cups-filters-1.28.10-x86_64-1.txz: Upgraded. d/doxygen-1.9.2-x86_64-1.txz: Upgraded. kde/akonadi-search-21.08.0-x86_64-2.txz: Rebuilt. Rebuilt against recompiled xapian-core package. kde/akonadiconsole-21.08.0-x86_64-2.txz: Rebuilt. Rebuilt against recompiled xapian-core package. kde/khelpcenter-21.08.0-x86_64-2.txz: Rebuilt. Rebuilt against recompiled xapian-core package. l/harfbuzz-2.9.0-x86_64-1.txz: Upgraded. Looking over the changes, they appear to be safe enough and/or mostly bugfixes, so we'll take this. If it breaks anything, please report. l/json-glib-1.6.4-x86_64-1.txz: Upgraded. l/ocl-icd-2.3.1-x86_64-1.txz: Upgraded. l/pango-1.48.9-x86_64-1.txz: Upgraded. l/pycurl-7.44.1-x86_64-1.txz: Upgraded. l/xapian-core-1.4.18-x86_64-4.txz: Rebuilt. Rebuilt with gcc-11.2.0 per doxygen warning. n/NetworkManager-1.32.10-x86_64-1.txz: Upgraded. xap/network-manager-applet-1.24.0-x86_64-1.txz: Upgraded. extra/sendmail/sendmail-8.17.1-x86_64-1.txz: Upgraded. extra/sendmail/sendmail-cf-8.17.1-noarch-1.txz: Upgraded.
Diffstat (limited to 'source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch')
-rw-r--r--source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch b/source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch
deleted file mode 100644
index 38465ffb8..000000000
--- a/source/d/doxygen/patches/doxgen-1.9.1-crash-when-parsing-config-file-part2.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -up doxygen/src/configimpl.l.orig doxygen/src/configimpl.l
---- doxygen/src/configimpl.l.orig 2021-01-19 17:25:00.933789247 +0100
-+++ doxygen/src/configimpl.l 2021-01-19 17:26:09.704744240 +0100
-@@ -1175,8 +1175,7 @@ static void substEnvVarsInStrList(String
- for (const auto &s : sl)
- {
- QCString result = s.c_str();
-- // an argument with quotes will have an extra space at the end, so wasQuoted will be TRUE.
-- bool wasQuoted = (result.find(' ')!=-1) || (result.find('\t')!=-1);
-+ bool wasQuoted = (result.find(' ')!=-1) || (result.find('\t')!=-1) || (result.find('"')!=-1);
- // here we strip the quote again
- substEnvVarsInString(result);
-
-@@ -1229,7 +1228,7 @@ static void substEnvVarsInStrList(String
- }
- if (p!=l) // add the leftover as a string
- {
-- results.push_back(result.right(l-p).data());
-+ results.push_back(result.right(l-p).str());
- }
- }
- else // just goto the next element in the list