aboutsummaryrefslogtreecommitdiff
path: root/src/util/common_allocation.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/common_allocation.c')
-rw-r--r--src/util/common_allocation.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/util/common_allocation.c b/src/util/common_allocation.c
index 5945fdcde..fd91e23b2 100644
--- a/src/util/common_allocation.c
+++ b/src/util/common_allocation.c
@@ -546,10 +546,11 @@ GNUNET_is_zero_ (const void *a,
546 size_t n) 546 size_t n)
547{ 547{
548 const char *b = a; 548 const char *b = a;
549
549 for (size_t i = 0; i < n; i++) 550 for (size_t i = 0; i < n; i++)
550 if (b[i]) 551 if (b[i])
551 return 0; 552 return 1;
552 return 1; 553 return 0;
553} 554}
554 555
555 556