summaryrefslogtreecommitdiff
path: root/src/common/storagedir.h
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-11-17 12:27:25 -0500
committerNick Mathewson <nickm@torproject.org>2017-12-08 14:47:19 -0500
commitc92ac9f5cbb4440b5f87c7e0dd6bec5147d72405 (patch)
tree2cd04944fc6132f5abadddbe6d225801385abcac /src/common/storagedir.h
parent2f086888b14be3998421b29bfc81d037b8073202 (diff)
downloadtor-c92ac9f5cbb4440b5f87c7e0dd6bec5147d72405.tar.gz
tor-c92ac9f5cbb4440b5f87c7e0dd6bec5147d72405.zip
Convert the rest of src/common's headers to use FREE_AND_NULL
Diffstat (limited to 'src/common/storagedir.h')
-rw-r--r--src/common/storagedir.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/storagedir.h b/src/common/storagedir.h
index 3de0afc361..8408ab50d2 100644
--- a/src/common/storagedir.h
+++ b/src/common/storagedir.h
@@ -9,7 +9,9 @@ struct config_line_t;
struct sandbox_cfg_elem;
storage_dir_t * storage_dir_new(const char *dirname, int n_files);
-void storage_dir_free(storage_dir_t *d);
+void storage_dir_free_(storage_dir_t *d);
+#define storage_dir_free(d) FREE_AND_NULL(storage_dir, (d))
+
int storage_dir_register_with_sandbox(storage_dir_t *d,
struct sandbox_cfg_elem **cfg);
const smartlist_t *storage_dir_list(storage_dir_t *d);