From: Aida JonikienÄ— <aidas957(a)gmail.com> --- dlls/msvcrt/concurrency.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dlls/msvcrt/concurrency.c b/dlls/msvcrt/concurrency.c index d9639d1078e..dc030b359da 100644 --- a/dlls/msvcrt/concurrency.c +++ b/dlls/msvcrt/concurrency.c @@ -2094,7 +2094,11 @@ _StructuredTaskCollection* __thiscall _StructuredTaskCollection_ctor( DEFINE_THISCALL_WRAPPER(_StructuredTaskCollection_dtor, 4) void __thiscall _StructuredTaskCollection_dtor(_StructuredTaskCollection *this) { - FIXME("(%p): stub!\n", this); + static unsigned int once; + + if (!once++) + FIXME("(%p): stub!\n", this); + if (this->count && !__uncaught_exception()) { missing_wait e; missing_wait_ctor_str(&e, "Missing call to _RunAndWait"); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6454