msvcrt: Ignore S and R flags in fopen.
This commit is contained in:
parent
e3c13943d4
commit
ab4b4d34c3
|
@ -1317,6 +1317,10 @@ static int msvcrt_get_flags(const MSVCRT_wchar_t* mode, int *open_flags, int* st
|
|||
case 'a':
|
||||
case 'w':
|
||||
break;
|
||||
case 'S':
|
||||
case 'R':
|
||||
FIXME("ignoring cache optimization flag: %c\n", mode[-1]);
|
||||
break;
|
||||
default:
|
||||
MSVCRT_INVALID_PMT(0, MSVCRT_EINVAL);
|
||||
return -1;
|
||||
|
|
Loading…
Reference in New Issue