[PATCH] USB: kzalloc in dabusb
kzalloc in dabusb. Signed-off-by: Oliver Neukum <oliver@neukum.name> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
bbdb7dafb5
commit
d8e298dc9f
1 changed files with 2 additions and 3 deletions
|
@ -217,12 +217,11 @@ static int dabusb_alloc_buffers (pdabusb_t s)
|
|||
pipesize, packets, transfer_buffer_length);
|
||||
|
||||
while (buffers < (s->total_buffer_size << 10)) {
|
||||
b = (pbuff_t) kmalloc (sizeof (buff_t), GFP_KERNEL);
|
||||
b = (pbuff_t) kzalloc (sizeof (buff_t), GFP_KERNEL);
|
||||
if (!b) {
|
||||
err("kmalloc(sizeof(buff_t))==NULL");
|
||||
err("kzalloc(sizeof(buff_t))==NULL");
|
||||
goto err;
|
||||
}
|
||||
memset (b, 0, sizeof (buff_t));
|
||||
b->s = s;
|
||||
b->purb = usb_alloc_urb(packets, GFP_KERNEL);
|
||||
if (!b->purb) {
|
||||
|
|
Loading…
Reference in a new issue