Commit 43ae196c authored by Rusty Russell's avatar Rusty Russell

Fix up non-TDB_TRACE compile.

parent 9be834e9
...@@ -349,8 +349,9 @@ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags, ...@@ -349,8 +349,9 @@ struct tdb_context *tdb_open_ex(const char *name, int hash_size, int tdb_flags,
if (!tdb) if (!tdb)
return NULL; return NULL;
#ifdef TDB_TRACE
close(tdb->tracefd); close(tdb->tracefd);
#endif
if (tdb->map_ptr) { if (tdb->map_ptr) {
if (tdb->flags & TDB_INTERNAL) if (tdb->flags & TDB_INTERNAL)
SAFE_FREE(tdb->map_ptr); SAFE_FREE(tdb->map_ptr);
...@@ -410,7 +411,9 @@ int tdb_close(struct tdb_context *tdb) ...@@ -410,7 +411,9 @@ int tdb_close(struct tdb_context *tdb)
} }
} }
#ifdef TDB_TRACE
close(tdb->tracefd); close(tdb->tracefd);
#endif
memset(tdb, 0, sizeof(*tdb)); memset(tdb, 0, sizeof(*tdb));
SAFE_FREE(tdb); SAFE_FREE(tdb);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment