diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-11-05 20:34:22 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-11-05 20:34:22 +0000 |
commit | 3ebd1ebeca2edc09027dd583149c64c48c3e7832 (patch) | |
tree | d6ef3b849c954446b35296836dff8da55bd16765 /src/or/test.c | |
parent | 35bef7fefd6e8fabf759da7c54d8003210661896 (diff) | |
download | tor-3ebd1ebeca2edc09027dd583149c64c48c3e7832.tar.gz tor-3ebd1ebeca2edc09027dd583149c64c48c3e7832.zip |
The chunk_size field in memarea_t was never actually set. Remove the whole thing.
svn:r17195
Diffstat (limited to 'src/or/test.c')
-rw-r--r-- | src/or/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/test.c b/src/or/test.c index f3e1ae18e4..044ca38e3a 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -3908,7 +3908,7 @@ test_util_mempool(void) static void test_util_memarea(void) { - memarea_t *area = memarea_new(1024); + memarea_t *area = memarea_new(); char *p1, *p2, *p3, *p1_orig; int i; test_assert(area); |