diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-06-06 11:37:47 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-06 11:37:47 (GMT) |
commit | eb1a19c4cd476727db0f305f62fadbe578027246 (patch) | |
tree | 56c6c1786257764448b86bf0ca1f9100a2f3de35 /src/configimpl.l | |
parent | f49f1c8cdd9babbbe0350c9ad3d3a3e92244085e (diff) | |
parent | c0dcee7cdcc5d7841d050682a35ccf59dc668fcb (diff) | |
download | Doxygen-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
Diffstat (limited to 'src/configimpl.l')
-rw-r--r-- | src/configimpl.l | 2 |
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; |