From f0c6a81c0c9a4b23b6801f40554b8bec425a83b4 Mon Sep 17 00:00:00 2001 From: Duncan Horn <40036384+dunhor@users.noreply.github.com> Date: Fri, 2 Aug 2024 14:14:08 -0700 Subject: [PATCH] Sync with OS (#457) * Sync with c027f28954dcfc8ce4b9040d57b94680cfe72971 * Sync with OS commit 39bc95ee863de17875c268e451901be343c05894 * Fix break --- include/wil/result.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wil/result.h b/include/wil/result.h index 990a40b2..178fde36 100644 --- a/include/wil/result.h +++ b/include/wil/result.h @@ -435,7 +435,7 @@ namespace details_abi private: struct Node { - DWORD threadId = MAXDWORD; + DWORD threadId = 0xffffffff; // MAXDWORD Node* pNext = nullptr; T value{}; };