mirror of
https://github.com/rofl0r/proxychains-ng
synced 2025-01-06 21:02:55 +08:00
main.c: fixed forgotten initialization for second loop using i
this caused the combination of -q -f somefile to not find the dll in the current dir, because it started iterating the directory list with 2 instead of 0.
This commit is contained in:
parent
f011ff99dd
commit
7bca3ba5ef
@ -103,6 +103,8 @@ int main(int argc, char *argv[]) {
|
||||
// search DLL
|
||||
|
||||
set_own_dir(argv[0]);
|
||||
|
||||
i = 0;
|
||||
|
||||
while(dll_dirs[i]) {
|
||||
snprintf(buf, sizeof(buf), "%s/%s", dll_dirs[i], dll_name);
|
||||
|
Loading…
Reference in New Issue
Block a user