]> Pileus Git - ~andy/linux/commitdiff
apparmor: sparse fix: rename shadowed variables in policy_unpack.c
authorJames Morris <jmorris@namei.org>
Mon, 29 Aug 2011 01:43:02 +0000 (11:43 +1000)
committerJames Morris <jmorris@namei.org>
Fri, 9 Sep 2011 23:56:28 +0000 (16:56 -0700)
Fix the following warnings:

security/apparmor/policy_unpack.c:384:35: warning: symbol 'size' shadows an earlier one
security/apparmor/policy_unpack.c:370:24: originally declared here
security/apparmor/policy_unpack.c:443:29: warning: symbol 'tmp' shadows an earlier one
security/apparmor/policy_unpack.c:434:21: originally declared here

Signed-off-by: James Morris <jmorris@namei.org>
Acked-by: John Johansen <john.johansen@canonical.com>
security/apparmor/policy_unpack.c

index d6d9a57b56525e5c7ca9df569f19d3da7d84feba..741dd13e089bacbbc14098d444faf89a82262bf2 100644 (file)
@@ -381,11 +381,11 @@ static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
                profile->file.trans.size = size;
                for (i = 0; i < size; i++) {
                        char *str;
-                       int c, j, size = unpack_strdup(e, &str, NULL);
+                       int c, j, size2 = unpack_strdup(e, &str, NULL);
                        /* unpack_strdup verifies that the last character is
                         * null termination byte.
                         */
-                       if (!size)
+                       if (!size2)
                                goto fail;
                        profile->file.trans.table[i] = str;
                        /* verify that name doesn't start with space */
@@ -393,7 +393,7 @@ static bool unpack_trans_table(struct aa_ext *e, struct aa_profile *profile)
                                goto fail;
 
                        /* count internal #  of internal \0 */
-                       for (c = j = 0; j < size - 2; j++) {
+                       for (c = j = 0; j < size2 - 2; j++) {
                                if (!str[j])
                                        c++;
                        }
@@ -440,11 +440,11 @@ static bool unpack_rlimits(struct aa_ext *e, struct aa_profile *profile)
                if (size > RLIM_NLIMITS)
                        goto fail;
                for (i = 0; i < size; i++) {
-                       u64 tmp = 0;
+                       u64 tmp2 = 0;
                        int a = aa_map_resource(i);
-                       if (!unpack_u64(e, &tmp, NULL))
+                       if (!unpack_u64(e, &tmp2, NULL))
                                goto fail;
-                       profile->rlimits.limits[a].rlim_max = tmp;
+                       profile->rlimits.limits[a].rlim_max = tmp2;
                }
                if (!unpack_nameX(e, AA_ARRAYEND, NULL))
                        goto fail;