It turns out we were mallocing too early, so move the allocation so we

don't leak.
This commit is contained in:
Warner Losh 2007-02-03 19:11:09 +00:00
parent 5f1413947b
commit df96f93d49
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=166473

View File

@ -159,7 +159,6 @@ uipaq_attach(device_t self)
ucom->sc_dev = self;
ucom->sc_udev = dev;
devinfop = malloc (1024, M_USBDEV, M_WAITOK);
DPRINTFN(10,("\nuipaq_attach: sc=%p\n", sc));
@ -178,6 +177,11 @@ uipaq_attach(device_t self)
goto bad;
}
devinfop = malloc (1024, M_USBDEV, M_WAITOK);
if (devinfop == NULL) {
err = ENOMEM;
goto bad;
}
usbd_devinfo(dev, 0, devinfop);
ucom->sc_dev = self;
device_set_desc_copy(self, devinfop);