summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-06-06 11:22:04 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-06-06 11:22:04 (GMT)
commitc0dcee7cdcc5d7841d050682a35ccf59dc668fcb (patch)
tree56c6c1786257764448b86bf0ca1f9100a2f3de35
parentf49f1c8cdd9babbbe0350c9ad3d3a3e92244085e (diff)
downloadDoxygen-c0dcee7cdcc5d7841d050682a35ccf59dc668fcb.zip
Doxygen-c0dcee7cdcc5d7841d050682a35ccf59dc668fcb.tar.gz
Doxygen-c0dcee7cdcc5d7841d050682a35ccf59dc668fcb.tar.bz2
issue #7833 Empty string in PREDEFINED throws
Ignore empty strings
-rw-r--r--src/configimpl.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configimpl.l b/src/configimpl.l
index 9cea61b..57e7c78 100644
--- a/src/configimpl.l
+++ b/src/configimpl.l
@@ -1102,7 +1102,7 @@ static void substEnvVarsInStrList(StringVector &sl)
}
else // just goto the next element in the list
{
- results.push_back(result.data());
+ if (!result.isEmpty()) results.push_back(result.data());
}
}
sl = results;