File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -860,12 +860,7 @@ void MemoryFreeLibrary(HMEMORYMODULE mod)
860860int MemoryCallEntryPoint (HMEMORYMODULE mod , MEMORYMODULE_START_ARGS * startArgs )
861861{
862862 PMEMORYMODULE module = (PMEMORYMODULE )mod ;
863- if (module == NULL ) printf ("1" );
864- if ( module -> isDLL ) printf ("2" );
865- if (module -> exeEntry == NULL ) printf ("3" );
866- if (!module -> isRelocated ) printf ("4" );
867-
868-
863+
869864 if (module == NULL || module -> isDLL || module -> exeEntry == NULL || !module -> isRelocated )
870865 {
871866 return -1 ;
@@ -1988,11 +1983,6 @@ void MemoryFreeLibrary(HMEMORYMODULE mod)
19881983int MemoryCallEntryPoint (HMEMORYMODULE mod , MEMORYMODULE_START_ARGS * startArgs )
19891984{
19901985 PMEMORYMODULE module = (PMEMORYMODULE )mod ;
1991- if (module == NULL ) printf ("1" );
1992- if ( module -> isDLL ) printf ("2" );
1993- if (module -> exeEntry == NULL ) printf ("3" );
1994- if (!module -> isRelocated ) printf ("4" );
1995-
19961986
19971987 if (module == NULL || module -> isDLL || module -> exeEntry == NULL || !module -> isRelocated )
19981988 {
You can’t perform that action at this time.
0 commit comments