kernel32: Added missing break (Coverity).
This commit is contained in:
parent
409aae33dd
commit
7cd22f7037
|
@ -131,8 +131,10 @@ static BOOL dns_fqdn ( char *name, int *size )
|
|||
{
|
||||
case ENAMETOOLONG:
|
||||
SetLastError ( ERROR_MORE_DATA );
|
||||
break;
|
||||
default:
|
||||
SetLastError ( ERROR_INVALID_PARAMETER );
|
||||
break;
|
||||
}
|
||||
return FALSE;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue