drivers/char/pcmcia/ipwireless/hardware.c fix resource leak
authorDarren Jenkins <[email protected]>
Sat, 12 Jul 2008 20:47:49 +0000 (13:47 -0700)
committerLinus Torvalds <[email protected]>
Sat, 12 Jul 2008 21:33:41 +0000 (14:33 -0700)
Coverity CID: 2172 RESOURCE_LEAK

When pool_allocate() tries to enlarge a packet, if it can not allocate enough
memory, it returns NULL without first freeing the old packet.

This patch just frees the packet first.

Signed-off-by: Darren Jenkins <[email protected]>
Acked-by: Jiri Kosina <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/char/pcmcia/ipwireless/hardware.c

index ba6340ae98afa1f7a5f80bb33360270aa4cc7cc8..929101ecbae29c180889a1d10e8c7f0549bcd713 100644 (file)
@@ -590,8 +590,10 @@ static struct ipw_rx_packet *pool_allocate(struct ipw_hardware *hw,
                packet = kmalloc(sizeof(struct ipw_rx_packet) +
                                old_packet->length + minimum_free_space,
                                GFP_ATOMIC);
-               if (!packet)
+               if (!packet) {
+                       kfree(old_packet);
                        return NULL;
+               }
                memcpy(packet, old_packet,
                                sizeof(struct ipw_rx_packet)
                                        + old_packet->length);