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/util.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/util.c')
-rw-r--r-- | src/common/util.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/util.c b/src/common/util.c index f8da6768a..07e26d85f 100644 --- a/src/common/util.c +++ b/src/common/util.c @@ -115,7 +115,8 @@ const char util_c_id[] = "$Id$"; * <b>file</b> and <b>line</b> are used if dmalloc is enabled, and * ignored otherwise. */ -void *_tor_malloc(DMALLOC_PARAMS size_t size) +void * +_tor_malloc(DMALLOC_PARAMS size_t size) { void *result; |