[H7][LIB][USB] Middlewares change: Fix memory corruption

Application of
[H7] USB LIB Middlewares change: Avoid null hhid from being deferenced
to V1.6.0
This commit is contained in:
jflyper 2020-01-19 21:30:32 +09:00
parent 79fa75b2b2
commit 172ce0fc2c
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@ uint8_t USBD_HID_SendReport(USBD_HandleTypeDef *pdev,
{ {
USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pHID_ClassData; USBD_HID_HandleTypeDef *hhid = (USBD_HID_HandleTypeDef *)pdev->pHID_ClassData;
if (pdev->dev_state == USBD_STATE_CONFIGURED) if (pdev->dev_state == USBD_STATE_CONFIGURED && hhid)
{ {
if (hhid->state == HID_IDLE) if (hhid->state == HID_IDLE)
{ {