Piotr Caban : msvcp100: Add _Concurrent_queue_base_v4:: _Internal_throw_exception implementation.
Module: wine Branch: master Commit: 0771b2e7a807a48fd9b289180396e915c7641f38 URL: https://source.winehq.org/git/wine.git/?a=commit;h=0771b2e7a807a48fd9b289180... Author: Piotr Caban <piotr(a)codeweavers.com> Date: Tue Jan 23 17:02:49 2018 +0100 msvcp100: Add _Concurrent_queue_base_v4::_Internal_throw_exception implementation. Signed-off-by: Piotr Caban <piotr(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 776bc36..c7fd041 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(a)details@Concurrency@@IAE(a)I@Z */
participants (1)
-
Alexandre Julliard