Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 81065e2f authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds
Browse files

[PATCH] zd1201 kmalloc size fix



Noticed by Coverity checker.

(akpm: I stole this from Greg's tree and used the (IMO) tidier sizeof(*p)
construct).

Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 005eca5e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -346,8 +346,7 @@ static void zd1201_usbrx(struct urb *urb, struct pt_regs *regs)
			if (datalen<14)
				goto resubmit;
			if ((seq & IEEE802_11_SCTL_FRAG) == 0) {
				frag = kmalloc(sizeof(struct zd1201_frag*),
				    GFP_ATOMIC);
				frag = kmalloc(sizeof(*frag), GFP_ATOMIC);
				if (!frag)
					goto resubmit;
				skb = dev_alloc_skb(IEEE802_11_DATA_LEN +14+2);