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.
pull/18/head v4.2
rofl0r 2012-11-04 06:14:33 +01:00
parent f011ff99dd
commit 7bca3ba5ef
1 changed files with 2 additions and 0 deletions

View File

@ -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);