Detlef Riekenberg : ntdll: Make RtlCompactHeap more silent.
28 Aug
2007
28 Aug
'07
12:50 p.m.
Module: wine Branch: master Commit: a45badf5c0a1c4d4cddf3c131450d796aa393f17 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a45badf5c0a1c4d4cddf3c1314... Author: Detlef Riekenberg <wine.dev(a)web.de> Date: Mon Aug 27 17:11:36 2007 +0200 ntdll: Make RtlCompactHeap more silent. --- dlls/ntdll/heap.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c index 1369b0d..fb7df12 100644 --- a/dlls/ntdll/heap.c +++ b/dlls/ntdll/heap.c @@ -1461,7 +1461,8 @@ error: */ ULONG WINAPI RtlCompactHeap( HANDLE heap, ULONG flags ) { - FIXME( "stub\n" ); + static BOOL reported; + if (!reported++) FIXME( "(%p, 0x%x) stub\n", heap, flags ); return 0; }
6777
Age (days ago)
6777
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard