commit fd2f18d4fbf8b84eb9444972b1660bb7712d192e
parent a699f01ab2ce41d0215a02ed34ef059b9152471a
Author: Özgür Kesim <oec-taler@kesim.org>
Date: Mon, 27 Nov 2023 15:38:41 +0100
-fix size comparison
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/pq/pq_result_helper.c b/src/pq/pq_result_helper.c
@@ -1208,7 +1208,7 @@ extract_array_generic (
in += sizeof(val);
/* total size for this array-entry */
- FAIL_IF (sizeof(ap) > sz);
+ FAIL_IF (sizeof(ap) != sz);
GNUNET_memcpy (&ap,
in,