From cabaa57578618d2fde10a5657726f4a6c43eccbf Mon Sep 17 00:00:00 2001 From: Jason Hood Date: Sat, 13 Nov 2010 21:54:02 +1000 Subject: [PATCH] Fix 64-bit version related to issue 2 --- injdll32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/injdll32.c b/injdll32.c index 3f6ea98..90c8ed9 100644 --- a/injdll32.c +++ b/injdll32.c @@ -65,8 +65,8 @@ void InjectDLL32( LPPROCESS_INFORMATION ppi, LPCWSTR dll ) si.cb = sizeof(si); // ...ANSI32.dll\0 CopyMemory( code, dll, len - 7*sizeof(WCHAR) ); - // ...ANSI-LLA.exe\0 - CopyMemory( code + len - 7*sizeof(WCHAR), L"-LLA.exe", 9*sizeof(WCHAR) ); + // ...ANSI-LLW.exe\0 + CopyMemory( code + len - 7*sizeof(WCHAR), L"-LLW.exe", 9*sizeof(WCHAR) ); if (!CreateProcessW( (LPCWSTR)code, NULL, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi )) return;