summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-06-06 11:38:31 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-06-06 11:38:31 (GMT)
commitdcec15d33b36c29bbce944ad109389d87da23cb4 (patch)
treedf4dcbad7a0833d68050508bf18b837aafa0ae2d
parentb42789d09fd8a81a40c0f13ba2c024b7eec71d92 (diff)
parenteb1a19c4cd476727db0f305f62fadbe578027246 (diff)
downloadDoxygen-dcec15d33b36c29bbce944ad109389d87da23cb4.zip
Doxygen-dcec15d33b36c29bbce944ad109389d87da23cb4.tar.gz
Doxygen-dcec15d33b36c29bbce944ad109389d87da23cb4.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
-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;