mirror of
https://github.com/spice2x/spice2x.github.io.git
synced 2026-08-01 22:30:42 -07:00
troubleshooter: address false positive (#454)
## Link to GitHub Issue, if one exists #447 ## Description of change Allow GetAdaptersInfo to fail with ERROR_BUFFER_OVERFLOW.
This commit is contained in:
@@ -68,7 +68,7 @@ static ULONG WINAPI GetAdaptersInfo_hook(PIP_ADAPTER_INFO pAdapterInfo, PULONG p
|
||||
free(pAdapterInfo2);
|
||||
}
|
||||
|
||||
if (ret != ERROR_SUCCESS) {
|
||||
if (ret != ERROR_SUCCESS && ret != ERROR_BUFFER_OVERFLOW) {
|
||||
defer_network_adapter_error();
|
||||
log_warning(
|
||||
"network",
|
||||
|
||||
Reference in New Issue
Block a user