diff options
author | Michael Stapelberg | 2011-07-13 16:09:30 +0200 |
---|---|---|
committer | Michael Stapelberg | 2011-07-13 16:09:30 +0200 |
commit | e924ce2d1928960494445580498a2788cc40294f (patch) | |
tree | 32bd8e29f045b1ba338ffc7ae1e79e45e40a895f /src/auto_detect_format.c | |
parent | magic: try to auto-detect output_format by default (dzen2/i3bar/xmobar) (diff) |
fix memory leak
Diffstat (limited to 'src/auto_detect_format.c')
-rw-r--r-- | src/auto_detect_format.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/auto_detect_format.c b/src/auto_detect_format.c index b8dfdfc..2df13f5 100644 --- a/src/auto_detect_format.c +++ b/src/auto_detect_format.c @@ -136,6 +136,9 @@ char *auto_detect_format() { } out: + if (parentname) + free(parentname); + closedir(dir); return format; |