You ain't never seen this bug. That '_' was never there!

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2122 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-02-08 12:28:32 +00:00
parent ae16cbfe3f
commit 21fa9b890c

View file

@ -125,7 +125,7 @@ static int NSISCALL process_string_fromparm_toint(int id_)
static char * NSISCALL process_string_fromparm_tobuf(int id_)
{
int id = id_ < 0 ? -id_ : id_;
char *result = process_string_fromtab(bufs[id_ >> 4], parms[id_ & 0xF]);
char *result = process_string_fromtab(bufs[id >> 4], parms[id & 0xF]);
if (id_ < 0) validate_filename(result);
return result;
}