mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
Update tracert.cpp
Removed SetLastError calls
This commit is contained in:
parent
c75eb7fe31
commit
7f5eab7fb6
1 changed files with 0 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue