]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove remaining references to "nulterminate" in comments
authorNick Mathewson <nickm@torproject.org>
Wed, 2 Sep 2015 12:50:26 +0000 (08:50 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 2 Sep 2015 12:50:26 +0000 (08:50 -0400)
Thanks to Roger for spotting this!

src/or/buffers.c
src/test/test_buffers.c

index 01a1b1f3660e2ad580aa911c218b3dcef39e3b9d..cc2f6f409bbbb73e27560177d4c31ec966f8ea0c 100644 (file)
@@ -178,13 +178,10 @@ preferred_chunk_size(size_t target)
 /** Collapse data from the first N chunks from <b>buf</b> into buf->head,
  * growing it as necessary, until buf->head has the first <b>bytes</b> bytes
  * of data from the buffer, or until buf->head has all the data in <b>buf</b>.
- *
- * If <b>nulterminate</b> is true, ensure that there is a 0 byte in
- * buf->head->mem right after all the data. */
+ */
 STATIC void
 buf_pullup(buf_t *buf, size_t bytes)
 {
-  /* XXXX nothing uses nulterminate; remove it. */
   chunk_t *dest, *src;
   size_t capacity;
   if (!buf->head)
index 4b6e5399fde17ce9a3a7aff73460cb669ba1d8a3..29ee40861695368f648f701c812cdec4b889ca15 100644 (file)
@@ -206,9 +206,6 @@ test_buffer_pullup(void *arg)
   stuff = tor_malloc(16384);
   tmp = tor_malloc(16384);
 
-  /* Note: this test doesn't check the nulterminate argument to buf_pullup,
-     since nothing actually uses it.  We should remove it some time. */
-
   buf = buf_new_with_capacity(3000); /* rounds up to next power of 2. */
 
   tt_assert(buf);