fix(osal): initialize Windows thread sync correctly (#6604)

This commit is contained in:
Liam
2024-08-01 07:06:26 -04:00
committed by GitHub
parent a623a5ca3d
commit 93e0189309

View File

@@ -152,6 +152,7 @@ lv_result_t lv_thread_sync_init(lv_thread_sync_t * sync)
InitializeCriticalSection(&sync->cs);
InitializeConditionVariable(&sync->cv);
sync->v = false;
return LV_RESULT_OK;
}