ntdll: Remove the special case for the NUL device.

This commit is contained in:
Alexandre Julliard 2015-05-21 17:28:03 +09:00
parent 950c82094b
commit ee1528040e
1 changed files with 0 additions and 6 deletions

View File

@ -2734,12 +2734,6 @@ static NTSTATUS get_dos_device( const WCHAR *name, UINT name_len, ANSI_STRING *u
strcpy( dev, "lpt1" );
continue;
}
if (!strcmp( dev, "nul" ))
{
strcpy( unix_name, "/dev/null" );
dev = NULL; /* last try */
continue;
}
new_name = NULL;
if (dev[1] == ':' && dev[2] == ':') /* drive device */