mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
modified lib/rtl/exception.c
Silence unavoidable warning modified lib/rtl/generictable.c Avoid silenceable warning svn path=/trunk/; revision=41561
This commit is contained in:
@@ -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
|
||||
*/
|
||||
|
||||
@@ -619,7 +619,7 @@ RtlEnumerateGenericTableWithoutSplayingAvl(IN PRTL_AVL_TABLE Table,
|
||||
IN OUT PVOID *RestartKey)
|
||||
{
|
||||
/* FIXME! */
|
||||
return RtlEnumerateGenericTableWithoutSplayingAvl(Table, RestartKey);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user