diff options
author | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-08-31 23:13:12 +0200 |
---|---|---|
committer | Thomas Hindoe Paaboel Andersen <phomes@gmail.com> | 2014-08-31 23:25:34 +0200 |
commit | 9e60277835e61597011358afcdbfb3dd712ce128 (patch) | |
tree | 31d08df98c04ffea06c3b42cdc4f91d259fd3622 /src/shared/conf-parser.c | |
parent | e4c38cc36e287d46a56a98066cc368ee6fdd1968 (diff) |
config-parser: fix mem leak
Diffstat (limited to 'src/shared/conf-parser.c')
-rw-r--r-- | src/shared/conf-parser.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared/conf-parser.c b/src/shared/conf-parser.c index 439cfc58fc..ee6de653e1 100644 --- a/src/shared/conf-parser.c +++ b/src/shared/conf-parser.c @@ -710,6 +710,7 @@ int config_parse_strv(const char *unit, if (!utf8_is_valid(n)) { log_invalid_utf8(unit, LOG_ERR, filename, line, EINVAL, rvalue); + free(n); continue; } |