]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
r17423@catbus: nickm | 2007-12-28 01:54:42 -0500
authorNick Mathewson <nickm@torproject.org>
Fri, 28 Dec 2007 06:54:46 +0000 (06:54 +0000)
committerNick Mathewson <nickm@torproject.org>
Fri, 28 Dec 2007 06:54:46 +0000 (06:54 +0000)
 Fix compilation with dmalloc

svn:r12998

src/common/util.c

index d11b508b9285d360db29c1107935d86d636de1e1..92fb7d63b01001994f33e3004118c111839b54dc 100644 (file)
@@ -239,7 +239,7 @@ _tor_malloc_roundup(size_t *sizep DMALLOC_PARAMS)
   *sizep = malloc_usable_size(result);
   return result;
 #else
-  return _tor_malloc(*sizep);
+  return _tor_malloc(*sizep DMALLOC_FN_ARGS);
 #endif
 #endif
 }