mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-27 07:34:06 +02:00
add parameter check logic to clean up Klocwork warning.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7390 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
6041576eb2
commit
af58e37731
@ -633,6 +633,7 @@ Uhci2ControlTransfer (
|
|||||||
UINT8 *DataPhy;
|
UINT8 *DataPhy;
|
||||||
VOID *DataMap;
|
VOID *DataMap;
|
||||||
BOOLEAN IsSlowDevice;
|
BOOLEAN IsSlowDevice;
|
||||||
|
UINTN TransferDataLength;
|
||||||
|
|
||||||
Uhc = UHC_FROM_USB2_HC_PROTO (This);
|
Uhc = UHC_FROM_USB2_HC_PROTO (This);
|
||||||
TDs = NULL;
|
TDs = NULL;
|
||||||
@ -660,10 +661,16 @@ Uhci2ControlTransfer (
|
|||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((TransferDirection != EfiUsbNoData) && (DataLength == NULL)) {
|
if ((TransferDirection != EfiUsbNoData) && (Data == NULL || DataLength == NULL)) {
|
||||||
return EFI_INVALID_PARAMETER;
|
return EFI_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (TransferDirection == EfiUsbNoData) {
|
||||||
|
TransferDataLength = 0;
|
||||||
|
} else {
|
||||||
|
TransferDataLength = *DataLength;
|
||||||
|
}
|
||||||
|
|
||||||
*TransferResult = EFI_USB_ERR_SYSTEM;
|
*TransferResult = EFI_USB_ERR_SYSTEM;
|
||||||
Status = EFI_DEVICE_ERROR;
|
Status = EFI_DEVICE_ERROR;
|
||||||
|
|
||||||
@ -702,7 +709,7 @@ Uhci2ControlTransfer (
|
|||||||
PktId,
|
PktId,
|
||||||
RequestPhy,
|
RequestPhy,
|
||||||
DataPhy,
|
DataPhy,
|
||||||
*DataLength,
|
TransferDataLength,
|
||||||
(UINT8) MaximumPacketLength,
|
(UINT8) MaximumPacketLength,
|
||||||
IsSlowDevice
|
IsSlowDevice
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user