Commit 7cd22f70 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

kernel32: Added missing break (Coverity).

parent 409aae33
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment