From: Christian Grothoff Date: Fri, 3 Apr 2020 15:05:02 +0000 (+0200) Subject: fix zero test X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f50af5edddee3a5d7d353b3829829c00a16890cc;p=oweals%2Fgnunet.git fix zero test --- 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; }