summaryrefslogtreecommitdiffhomepage
path: root/dbutil.c
diff options
context:
space:
mode:
authorFrançois Perrad <francois.perrad@gadz.org>2018-03-03 04:06:45 +0100
committerMatt Johnston <matt@ucc.asn.au>2018-03-03 11:06:45 +0800
commit257bba00ac1c1461b18ff1f5d420ec83fa13a368 (patch)
tree8156f6443adbd45eacfa1059c358baf6be0708ee /dbutil.c
parentce1f9cdf7c27bb877d8efd3048af6e5ea513d09a (diff)
some linting after fuzz merge (#60)
* fix prototype * remove extra comma * use m_free after m_strdup
Diffstat (limited to 'dbutil.c')
-rw-r--r--dbutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.c b/dbutil.c
index 163ffd9..9f61a2b 100644
--- a/dbutil.c
+++ b/dbutil.c
@@ -687,6 +687,6 @@ void fsync_parent_dir(const char* fn) {
TRACE(("error opening directory %s for fsync: %s", dir, strerror(errno)))
}
- free(fn_dir);
+ m_free(fn_dir);
#endif
}