diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-03 09:30:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2016-09-03 09:30:03 (GMT) |
commit | 4dc6c6c2f01b7b7bda82f5c3dbf4f78e489341bc (patch) | |
tree | ebb05fc47f864465b7776ee7d02c04026551e57f | |
parent | 3df5c424078f63133b2130ef26ddd569e5fd8412 (diff) | |
download | Doxygen-4dc6c6c2f01b7b7bda82f5c3dbf4f78e489341bc.zip Doxygen-4dc6c6c2f01b7b7bda82f5c3dbf4f78e489341bc.tar.gz Doxygen-4dc6c6c2f01b7b7bda82f5c3dbf4f78e489341bc.tar.bz2 |
Added missing free
-rw-r--r-- | src/portable.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/portable.cpp b/src/portable.cpp index 46adccf..1983fe7 100644 --- a/src/portable.cpp +++ b/src/portable.cpp @@ -469,5 +469,6 @@ void portable_correct_path(void) } } if (found) portable_setenv("PATH",q); + free(q); #endif } |