mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-30 04:57:18 +08:00
set endpoint buffer to RT_NULL
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2480 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
5811daec0c
commit
5927bf0ac1
@ -813,9 +813,7 @@ uep_t rt_usbd_endpoint_create(uep_desc_t ep_desc, udep_handler_t handler)
|
||||
}
|
||||
ep->ep_desc = ep_desc;
|
||||
ep->handler = handler;
|
||||
|
||||
/* allocate buffer for endpoint */
|
||||
ep->buffer = (rt_uint8_t*)rt_malloc(ep_desc->wMaxPacketSize);
|
||||
ep->buffer = RT_NULL;
|
||||
|
||||
return ep;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user