Fix performance bug in command description lookup - it was performed once for every element in PATH. Thanks to Tassilo Horn for the bug report.

darcs-hash:20070317225611-ac50b-5df5227ddd88747781c981ed34a80844391573d1.gz
This commit is contained in:
axel 2007-03-18 08:56:11 +10:00
parent 2aea1d5a84
commit 3e1b0e587e

View File

@ -1128,12 +1128,11 @@ static void complete_cmd( const wchar_t *cmd,
ACCEPT_INCOMPLETE |
EXECUTABLES_ONLY ) != EXPAND_ERROR )
{
complete_cmd_desc( cmd, comp );
}
}
free( path_cpy );
complete_cmd_desc( cmd, comp );
}
}