Skip to content

Commit

Permalink
fix: correct helper reading logic
Browse files Browse the repository at this point in the history
  • Loading branch information
shunf4 committed Mar 4, 2020
1 parent 35c031c commit c9f705b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exe/args_and_config.c
Original file line number Diff line number Diff line change
Expand Up @@ -1166,7 +1166,7 @@ DWORD LoadConfiguration(PROXYCHAINS_CONFIG** ppPxchConfig, PROXYCHAINS_CONFIG* p
case 4: ASSIGN_FUNC_ADDR_WITH_ARCH(pPxchConfig, GetLastError , tmp, X86); break;
case 5: ASSIGN_FUNC_ADDR_WITH_ARCH(pPxchConfig, OutputDebugStringA , tmp, X86); break;
case 6: ASSIGN_FUNC_ADDR_WITH_ARCH(pPxchConfig, GetCurrentProcessId, tmp, X86); break;
case 7: ASSIGN_FUNC_ADDR_WITH_ARCH(pPxchConfig, wsprintfA , tmp, X86); break;
case 7: ASSIGN_FUNC_ADDR_WITH_ARCH(pPxchConfig, wsprintfA , tmp, X86);
default: bStop = TRUE; break;
}
}
Expand Down

0 comments on commit c9f705b

Please sign in to comment.