Commit ab4b4d34 authored by Piotr Caban's avatar Piotr Caban Committed by Alexandre Julliard

msvcrt: Ignore S and R flags in fopen.

parent e3c13943
......@@ -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;
......
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