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:
parent
ae16cbfe3f
commit
21fa9b890c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue