From: Changli Gao Date: Tue, 7 Dec 2010 05:05:18 +0000 (+0000) Subject: af_packet: fix freeing pg_vec twice on error path X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=920b8d913bd3d963d5c88bca160a272b71e0c95a;p=linux-beck.git af_packet: fix freeing pg_vec twice on error path It is introduced in: commit 0e3125c755445664f00ad036e4fc2cd32fd52877 Author: Neil Horman Date: Tue Nov 16 10:26:47 2010 -0800 packet: Enhance AF_PACKET implementation to not require high order contiguous memory allocation (v4) Signed-off-by: Changli Gao Signed-off-by: David S. Miller --- diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 9292ec93eb52..246a04a13234 100644 --- a/net/packet/af_packet.c +++ b/net/packet/af_packet.c @@ -2409,7 +2409,6 @@ out: out_free_pgvec: free_pg_vec(pg_vec, order, block_nr); - kfree(pg_vec); pg_vec = NULL; goto out; }