mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Silence debug messages.
Check for Expanded==NULL is useless, because it's done in HeapFree (thx hpoussin). svn path=/trunk/; revision=22713
This commit is contained in:
parent
df5296300e
commit
e6a334b469
2 changed files with 2 additions and 1 deletions
|
@ -121,7 +121,7 @@ BOOL LoadLogFile(HKEY hKey, WCHAR *LogName)
|
|||
|
||||
cleanup:
|
||||
HeapFree(MyHeap, 0, Buf);
|
||||
if(Expanded) HeapFree(MyHeap, 0, Expanded);
|
||||
HeapFree(MyHeap, 0, Expanded);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
#ifndef __EVENTLOG_H__
|
||||
#define __EVENTLOG_H__
|
||||
|
||||
#define NDEBUG
|
||||
#define WIN32_NO_STATUS
|
||||
|
||||
#include <windows.h>
|
||||
|
|
Loading…
Reference in a new issue