summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--make.bat2
-rw-r--r--psutil/_psutil_windows.c22
2 files changed, 13 insertions, 11 deletions
diff --git a/make.bat b/make.bat
index 58765456..d7c1091b 100644
--- a/make.bat
+++ b/make.bat
@@ -98,7 +98,7 @@ if "%1" == "uninstall" (
)
if "%1" == "test" (
- call :build
+ call :install
%PYTHON% %TSCRIPT%
goto :eof
)
diff --git a/psutil/_psutil_windows.c b/psutil/_psutil_windows.c
index 500ff567..64f8c5f4 100644
--- a/psutil/_psutil_windows.c
+++ b/psutil/_psutil_windows.c
@@ -137,35 +137,37 @@ typedef struct _MIB_UDP6TABLE_OWNER_PID {
MIB_UDP6ROW_OWNER_PID table[ANY_SIZE];
} MIB_UDP6TABLE_OWNER_PID, *PMIB_UDP6TABLE_OWNER_PID;
-
+
PIP_ADAPTER_ADDRESSES
psutil_get_nic_addresses() {
// allocate a 15 KB buffer to start with
int outBufLen = 15000;
DWORD dwRetVal = 0;
- ULONG iterations = 0;
+ ULONG attempts = 0;
PIP_ADAPTER_ADDRESSES pAddresses = NULL;
do {
- pAddresses = (IP_ADAPTER_ADDRESSES *)MALLOC(outBufLen);
+ pAddresses = (IP_ADAPTER_ADDRESSES *) malloc(outBufLen);
if (pAddresses == NULL) {
PyErr_NoMemory();
return NULL;
}
- dwRetVal = GetAdaptersAddresses(
- AF_UNSPEC, GAA_FLAG_INCLUDE_PREFIX, NULL, pAddresses, &outBufLen);
+
+ dwRetVal = GetAdaptersAddresses(AF_UNSPEC, 0, NULL, pAddresses,
+ &outBufLen);
if (dwRetVal == ERROR_BUFFER_OVERFLOW) {
- FREE(pAddresses);
+ free(pAddresses);
pAddresses = NULL;
}
else {
break;
}
- iterations++;
- } while ((dwRetVal == ERROR_BUFFER_OVERFLOW) && (iterations < 3));
+
+ attempts++;
+ } while ((dwRetVal == ERROR_BUFFER_OVERFLOW) && (attempts < 3));
if (dwRetVal != NO_ERROR) {
- PyErr_SetString(PyExc_RuntimeError, "GetAdaptersAddresses failed");
+ PyErr_SetString(PyExc_RuntimeError, "GetAdaptersAddresses() failed.");
return NULL;
}
@@ -179,7 +181,7 @@ psutil_get_nic_addresses() {
* ============================================================================
*/
-
+
/*
* Return a Python float representing the system uptime expressed in seconds
* since the epoch.