Commit 6120b3d5 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msvcrtd: Add missing return (Coverity).

parent 6cf05f91
......@@ -58,6 +58,7 @@ void * CDECL MSVCRTD_operator_new_dbg(MSVCRT_size_t nSize, int nBlockUse,
return NULL;
case _FREE_BLOCK:
FIXME("Native code throws an exception here\n");
return NULL;
case _CRT_BLOCK:
case _IGNORE_BLOCK:
ERR("Not allowed nBlockUse value: %d\n", _BLOCK_TYPE(nBlockUse));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment