diff options
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/common_allocation.c | 5 |
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, size_t n) { const char *b = a; + for (size_t i = 0; i < n; i++) if (b[i]) - return 0; - return 1; + return 1; + return 0; } |