The callback function to free the net buffer list. @param[in] Arg The opaque parameter. **/
| 93 | |
| 94 | **/ |
| 95 | VOID |
| 96 | EFIAPI |
| 97 | FreeNbufList ( |
| 98 | IN VOID *Arg |
| 99 | ) |
| 100 | { |
| 101 | ASSERT (Arg != NULL); |
| 102 | |
| 103 | NetbufFreeList ((LIST_ENTRY *) Arg); |
| 104 | FreePool (Arg); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | Check whether the Url is from Https. |
no test coverage detected