commit cca1730f8b1ad5b89c1d00d37da37edb173c02e5
parent 5f6ccd331f55b313f29161cc9d2077326c21d73f
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 25 Nov 2021 12:28:52 +0300
memorypool: minor doxy clarification
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/microhttpd/memorypool.c b/src/microhttpd/memorypool.c
@@ -408,7 +408,7 @@ MHD_pool_try_alloc (struct MemoryPool *pool,
* shrinking the block that was last (re)allocated.
* If the given block is not the most recently
* (re)allocated block, the memory of the previous
- * allocation may be leaked until the pool is
+ * allocation may be not released until the pool is
* destroyed or reset.
*
* @param pool memory pool to use for the operation
diff --git a/src/microhttpd/memorypool.h b/src/microhttpd/memorypool.h
@@ -119,7 +119,7 @@ MHD_pool_try_alloc (struct MemoryPool *pool,
* shrinking the block that was last (re)allocated.
* If the given block is not the most recently
* (re)allocated block, the memory of the previous
- * allocation may be leaked until the pool is
+ * allocation may be not released until the pool is
* destroyed or reset.
*
* @param pool memory pool to use for the operation