diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-02-11 15:53:13 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-11 15:53:13 -0500 |
| commit | ddc80003843b9adeab31f49e37b522a90e5a84f5 (patch) | |
| tree | 53af848863a7a5d0ecc13d87c270ff960272aaeb /common | |
| parent | 4a76d06f33964fee12682a9cd7066d1776c71024 (diff) | |
| parent | 15f9c89e8427aa7cdf97061a2bda89d8403e4fba (diff) | |
Merge pull request #1592 from dlrobertson/fix_mem_errors
Fix more leaks
Diffstat (limited to 'common')
| -rw-r--r-- | common/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/util.c b/common/util.c index d6369853..38ac9367 100644 --- a/common/util.c +++ b/common/util.c @@ -96,6 +96,7 @@ pid_t get_parent_pid(pid_t child) { parent = strtol(token, NULL, 10); } + free(buffer); fclose(stat); } |
