소스 검색

r17423@catbus: nickm | 2007-12-28 01:54:42 -0500
Fix compilation with dmalloc


svn:r12998

Nick Mathewson 18 년 전
부모
커밋
c03ef9c395
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/common/util.c

+ 1 - 1
src/common/util.c

@@ -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
 }