diff --git a/reactos/lib/rtl/exception.c b/reactos/lib/rtl/exception.c index b0581ae3ed6..15c1fe8d306 100644 --- a/reactos/lib/rtl/exception.c +++ b/reactos/lib/rtl/exception.c @@ -66,6 +66,11 @@ RtlRaiseException(PEXCEPTION_RECORD ExceptionRecord) RtlRaiseStatus(Status); } +#ifdef _MSC_VER +#pragma warning(push) +#pragma warning(disable:4717) +#endif + /* * @implemented */ @@ -113,6 +118,10 @@ RtlRaiseStatus(NTSTATUS Status) RtlRaiseStatus(Status); } +#ifdef _MSC_VER +#pragma warning(pop) +#endif + /* * @implemented */ diff --git a/reactos/lib/rtl/generictable.c b/reactos/lib/rtl/generictable.c index 0d8f7807147..272182d0ba3 100644 --- a/reactos/lib/rtl/generictable.c +++ b/reactos/lib/rtl/generictable.c @@ -619,7 +619,7 @@ RtlEnumerateGenericTableWithoutSplayingAvl(IN PRTL_AVL_TABLE Table, IN OUT PVOID *RestartKey) { /* FIXME! */ - return RtlEnumerateGenericTableWithoutSplayingAvl(Table, RestartKey); + return NULL; } /*