]> git.ozlabs.org Git - ccan/commitdiff
tally: Adapt tally_new to Samba coding conventions
authorVolker Lendecke <vl@samba.org>
Wed, 10 Aug 2011 17:44:45 +0000 (19:44 +0200)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 31 Aug 2011 01:09:10 +0000 (10:39 +0930)
(Imported from SAMBA commit c6ae297d613fc22b92c34d26c61ec1715058b484)

ccan/tally/tally.c

index a5eedcb951bfafc819701a740bcad64e68f162ac..d67112c2cf6da49017904be9ec91b49f1f11ced5 100644 (file)
@@ -25,12 +25,15 @@ struct tally *tally_new(unsigned buckets)
        struct tally *tally;
 
        /* There is always 1 bucket. */
-       if (buckets == 0)
+       if (buckets == 0) {
                buckets = 1;
+       }
 
        /* Overly cautious check for overflow. */
-       if (sizeof(*tally) * buckets / sizeof(*tally) != buckets)
+       if (sizeof(*tally) * buckets / sizeof(*tally) != buckets) {
                return NULL;
+       }
+
        tally = (struct tally *)malloc(
                sizeof(*tally) + sizeof(tally->counts[0])*(buckets-1));
        if (tally == NULL) {