1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-09 04:26:11 +02:00

Fix typo in dllmain.cpp

This commit is contained in:
gwillcox-r7 2020-05-06 15:44:02 -05:00
parent ea3bba96e2
commit 1325c28ebd
No known key found for this signature in database
GPG Key ID: D35E05C0F2B81E83

View File

@ -562,7 +562,7 @@ int exploit(PMSF_PAYLOAD pMsfPayload)
// Get a HINSTANCE handle to the current process.
HINSTANCE hInst = GetModuleHandleA(NULL);
if (hInt == NULL){
if (hInst == NULL){
dprintf("[!] Couldn't get a handle to the current process! Exiting!\r\n");
return -1;
}