summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-06-06 11:37:47 (GMT)
committerGitHub <noreply@github.com>2020-06-06 11:37:47 (GMT)
commiteb1a19c4cd476727db0f305f62fadbe578027246 (patch)
tree56c6c1786257764448b86bf0ca1f9100a2f3de35
parentf49f1c8cdd9babbbe0350c9ad3d3a3e92244085e (diff)
parentc0dcee7cdcc5d7841d050682a35ccf59dc668fcb (diff)
downloadDoxygen-eb1a19c4cd476727db0f305f62fadbe578027246.zip
Doxygen-eb1a19c4cd476727db0f305f62fadbe578027246.tar.gz
Doxygen-eb1a19c4cd476727db0f305f62fadbe578027246.tar.bz2
Merge pull request #7834 from albert-github/feature/issue_7833
issue #7833 Empty string in PREDEFINED throws
-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;