diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-30 01:39:24 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-30 01:39:24 +0000 |
commit | 26e7a05725bcb2cea59401803371ee3fa688a8f6 (patch) | |
tree | b81d9d8ee4672297b78012cecd17142616b2944e /src/common/container.c | |
parent | edd15cb781934d91ae92adbe3311bf339ddbf2e8 (diff) | |
download | tor-26e7a05725bcb2cea59401803371ee3fa688a8f6.tar tor-26e7a05725bcb2cea59401803371ee3fa688a8f6.tar.gz |
even better function start checks; give dmalloc a chance of working.
svn:r5162
Diffstat (limited to 'src/common/container.c')
-rw-r--r-- | src/common/container.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/container.c b/src/common/container.c index 436c4bc01..39cabe9c5 100644 --- a/src/common/container.c +++ b/src/common/container.c @@ -550,7 +550,8 @@ strmap_set(strmap_t *map, const char *key, void *val) /** Return the current value associated with <b>key</b>, or NULL if no * value is set. */ -void *strmap_get(strmap_t *map, const char *key) +void * +strmap_get(strmap_t *map, const char *key) { strmap_entry_t *resolve; strmap_entry_t search; |