Nikolay Sivov (@nsivov) commented about dlls/ntdll/actctx.c:
return STATUS_SUCCESS; }
+/****************************************************************** + * RtlQueryInformationActiveActivationContext (NTDLL.@) + */ +NTSTATUS WINAPI RtlQueryInformationActiveActivationContext( ULONG class, PVOID buffer, + SIZE_T buffer_size, SIZE_T *return_length ) +{ + return RtlQueryInformationActivationContext( QUERY_ACTCTX_FLAG_NO_ADDREF, get_current_actctx_no_addref(), + NULL, class, buffer, buffer_size, return_length ); +}
This doesn't look right. Why would it use NO_ADDREF? I think you only need QUERY_ACTCTX_FLAG_USE_ACTIVE_ACTCTX. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8247#note_105811