mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 16:39:14 +00:00
Fix off-by-one
This commit is contained in:
parent
1022340aa1
commit
7857b7bc5a
|
@ -5391,12 +5391,12 @@ static bool prompt_run(void)
|
|||
|
||||
cnt_J = 0;
|
||||
next = cmdline;
|
||||
while (!cnt_j && (next = strstr(next, "%J"))) {
|
||||
while ((next = strstr(next, "%J"))) {
|
||||
++cnt_J;
|
||||
|
||||
tmplen = xstrsncpy(tmpcmd, cmdline, next - cmdline + 1) - 1;
|
||||
tmplen += xstrsncpy(tmpcmd + tmplen, "${0} ${@}", sizeof("${0} ${@}"));
|
||||
xstrsncpy(tmpcmd + tmplen, next + 2, len - (next - cmdline + 2));
|
||||
tmplen += xstrsncpy(tmpcmd + tmplen, "${0} ${@}", sizeof("${0} ${@}")) - 1;
|
||||
xstrsncpy(tmpcmd + tmplen, next + 2, len - (next - cmdline + 2) + 1);
|
||||
|
||||
++next;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue