kernel32: Added missing break (Coverity).

This commit is contained in:
Marcus Meissner 2011-03-18 23:21:35 +01:00 committed by Alexandre Julliard
parent 409aae33dd
commit 7cd22f7037
1 changed files with 2 additions and 0 deletions

View File

@ -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;
}