Changeset 99404 in vbox for trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.c
- Timestamp:
- Apr 14, 2023 3:17:44 PM (22 months ago)
- Location:
- trunk/src/VBox/Devices/EFI/FirmwareNew
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FirmwareNew
-
Property svn:mergeinfo
changed from (toggle deleted branches)
to (toggle deleted branches)/vendor/edk2/current 103735-103757,103769-103776,129194-145445 /vendor/edk2/current 103735-103757,103769-103776,129194-156846
-
Property svn:mergeinfo
changed from (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/FirmwareNew/NetworkPkg/HttpUtilitiesDxe/HttpUtilitiesDxe.c
r80721 r99404 9 9 10 10 #include "HttpUtilitiesDxe.h" 11 12 11 13 12 /** … … 26 25 ) 27 26 { 28 EFI_STATUS 29 UINTN 30 EFI_HANDLE 31 UINT32 32 EFI_HTTP_UTILITIES_PROTOCOL 27 EFI_STATUS Status; 28 UINTN HandleNum; 29 EFI_HANDLE *HandleBuffer; 30 UINT32 Index; 31 EFI_HTTP_UTILITIES_PROTOCOL *HttpUtilitiesProtocol; 33 32 34 35 HandleBuffer = NULL; 33 HandleBuffer = NULL; 36 34 37 35 // … … 56 54 HandleBuffer[Index], 57 55 &gEfiHttpUtilitiesProtocolGuid, 58 (VOID **) 56 (VOID **)&HttpUtilitiesProtocol, 59 57 ImageHandle, 60 58 NULL, … … 70 68 Status = gBS->UninstallMultipleProtocolInterfaces ( 71 69 HandleBuffer[Index], 72 &gEfiHttpUtilitiesProtocolGuid, HttpUtilitiesProtocol, 70 &gEfiHttpUtilitiesProtocolGuid, 71 HttpUtilitiesProtocol, 73 72 NULL 74 73 ); … … 80 79 return EFI_SUCCESS; 81 80 } 82 83 81 84 82 /** … … 100 98 ) 101 99 { 102 EFI_STATUS 100 EFI_STATUS Status; 103 101 104 EFI_HANDLE 102 EFI_HANDLE Handle; 105 103 106 104 Handle = NULL; … … 118 116 return Status; 119 117 } 120
Note:
See TracChangeset
for help on using the changeset viewer.