[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 03/03: MemoryPool: fixed assert
From: |
gnunet |
Subject: |
[libmicrohttpd] 03/03: MemoryPool: fixed assert |
Date: |
Thu, 29 Jul 2021 20:44:51 +0200 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd.
commit 1130d9c0d0aa457471e933d00bbc9ace2f84139b
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Thu Jul 29 21:40:33 2021 +0300
MemoryPool: fixed assert
---
src/microhttpd/memorypool.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/microhttpd/memorypool.c b/src/microhttpd/memorypool.c
index 95112c96..6045bdbc 100644
--- a/src/microhttpd/memorypool.c
+++ b/src/microhttpd/memorypool.c
@@ -396,7 +396,7 @@ MHD_pool_reset (struct MemoryPool *pool,
{
mhd_assert (pool->end >= pool->pos);
mhd_assert (pool->size >= pool->end - pool->pos);
- mhd_assert (copy_bytes < new_size);
+ mhd_assert (copy_bytes <= new_size);
mhd_assert (keep != NULL || copy_bytes == 0);
mhd_assert (keep == NULL || pool->memory <= (uint8_t*) keep);
mhd_assert (keep == NULL || pool->memory + pool->size >= (uint8_t*) keep
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.