Commit fcf8e164 authored by Alexandre Julliard's avatar Alexandre Julliard

setupapi: Fix access rights for cabinet creation.

parent 181beef8
...@@ -149,7 +149,7 @@ static INT_PTR CDECL sc_cb_open(char *pszFile, int oflag, int pmode) ...@@ -149,7 +149,7 @@ static INT_PTR CDECL sc_cb_open(char *pszFile, int oflag, int pmode)
ioflag |= GENERIC_WRITE; ioflag |= GENERIC_WRITE;
break; break;
case _O_RDWR: case _O_RDWR:
ioflag |= GENERIC_READ & GENERIC_WRITE; ioflag |= GENERIC_READ | GENERIC_WRITE;
break; break;
case _O_WRONLY | _O_RDWR: /* hmmm.. */ case _O_WRONLY | _O_RDWR: /* hmmm.. */
ERR("_O_WRONLY & _O_RDWR in oflag?\n"); ERR("_O_WRONLY & _O_RDWR in oflag?\n");
......
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