From 0771b2e7a807a48fd9b289180396e915c7641f38 Mon Sep 17 00:00:00 2001 From: Piotr Caban Date: Tue, 23 Jan 2018 17:02:49 +0100 Subject: [PATCH] msvcp100: Add _Concurrent_queue_base_v4::_Internal_throw_exception implementation. Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard --- dlls/msvcp90/misc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/msvcp90/misc.c b/dlls/msvcp90/misc.c index 776bc365f47..c7fd04151fc 100644 --- a/dlls/msvcp90/misc.c +++ b/dlls/msvcp90/misc.c @@ -1240,7 +1240,8 @@ DEFINE_THISCALL_WRAPPER(_Concurrent_queue_base_v4__Internal_throw_exception, 4) void __thiscall _Concurrent_queue_base_v4__Internal_throw_exception( const _Concurrent_queue_base_v4 *this) { - FIXME("(%p) stub\n", this); + TRACE("(%p)\n", this); + throw_exception(EXCEPTION_BAD_ALLOC, NULL); } /* ??0_Concurrent_queue_base_v4@details@Concurrency@@IAE@I@Z */