aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/ipcomp6.c
diff options
context:
space:
mode:
authorJesper Juhl <jesper.juhl@gmail.com>2006-03-20 20:46:29 -0500
committerDavid S. Miller <davem@davemloft.net>2006-03-20 20:46:29 -0500
commit2b191befe2c47c2f6e96b836a1f6054c9cbc4a0b (patch)
treee777b858f0b41aadec308989c1ae01174b1c083f /net/ipv6/ipcomp6.c
parentafe00251dd9b53d51de91ff0099961f42bbf3754 (diff)
[IPCOMP6]: don't check vfree() argument for NULL.
vfree does it's own NULL checking, so checking a pointer before handing it to vfree is pointless. Signed-off-by: Jesper Juhl <jesper.juhl@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ipcomp6.c')
-rw-r--r--net/ipv6/ipcomp6.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ipcomp6.c b/net/ipv6/ipcomp6.c
index d511a884dad0..6107592fbd8c 100644
--- a/net/ipv6/ipcomp6.c
+++ b/net/ipv6/ipcomp6.c
@@ -286,8 +286,8 @@ static void ipcomp6_free_scratches(void)
286 286
287 for_each_cpu(i) { 287 for_each_cpu(i) {
288 void *scratch = *per_cpu_ptr(scratches, i); 288 void *scratch = *per_cpu_ptr(scratches, i);
289 if (scratch) 289
290 vfree(scratch); 290 vfree(scratch);
291 } 291 }
292 292
293 free_percpu(scratches); 293 free_percpu(scratches);