1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

When creating the event used to sleep on WinRT, request the minimum access rights required for the desired operations on it (i.e. SYNCHRONIZE).

FossilOrigin-Name: ed603d75941ace159773b1a22ace84d51b630ad5
This commit is contained in:
mistachkin
2012-03-04 02:56:10 +00:00
parent 287a48d67b
commit 9668e24e62
3 changed files with 8 additions and 8 deletions

View File

@@ -3855,7 +3855,7 @@ int sqlite3_os_init(void){
#if SQLITE_OS_WINRT
sleepObj = osCreateEventEx(NULL, NULL, CREATE_EVENT_MANUAL_RESET,
EVENT_ALL_ACCESS);
SYNCHRONIZE);
#endif
#ifndef SQLITE_OMIT_WAL