Skip to content

Commit 39c4c17

Browse files
committed
fixed warnings when compiling with BCC55
1 parent eb764af commit 39c4c17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MemoryModule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,10 @@ BuildImportTable(PMEMORYMODULE module)
273273

274274
HMEMORYMODULE MemoryLoadLibrary(const void *data)
275275
{
276-
PMEMORYMODULE result=NULL;
276+
PMEMORYMODULE result;
277277
PIMAGE_DOS_HEADER dos_header;
278278
PIMAGE_NT_HEADERS old_header;
279-
unsigned char *code=NULL, *headers;
279+
unsigned char *code, *headers;
280280
DWORD locationDelta;
281281
DllEntryProc DllEntry;
282282
BOOL successfull;

0 commit comments

Comments
 (0)