Update tracert.cpp

Removed SetLastError calls
This commit is contained in:
Curtis Wilson 2025-03-11 17:14:21 -04:00 committed by GitHub
parent c75eb7fe31
commit 7f5eab7fb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -170,7 +170,6 @@ GetULONG(
// check input arguments
if (String == NULL || Value == NULL || *String == UNICODE_NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
return false;
}
@ -182,7 +181,6 @@ GetULONG(
*Value = wcstoul(String, &StopString, 10);
if ((errno != ERANGE) && (errno != 0 || *StopString != UNICODE_NULL))
{
SetLastError(ERROR_INVALID_DATA);
return false;
}
@ -587,7 +585,6 @@ GetOptionNumberOfHops(
// check input arguments
if (argv == NULL || i == NULL || Value == NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
return false;
}
@ -626,7 +623,6 @@ GetOptionTimeout(
// check input arguments
if (argv == NULL || i == NULL || Value == NULL)
{
SetLastError(ERROR_INVALID_PARAMETER);
return false;
}