diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-11 17:01:47 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-03-11 17:01:47 +0000 |
commit | d5d696321f9e1b87353b01d716da42f2c3275e5d (patch) | |
tree | 0ed7db8cb2f559ad67872f32e4f4bbd7b7466bce /os2/os2.c | |
parent | d7bc03f01f7e3506a9d9bfd0b13c189fd76b4aa6 (diff) | |
download | perl-d5d696321f9e1b87353b01d716da42f2c3275e5d.tar.gz |
off-by-one in os2.c (from Ilya Zakharevich)
p4raw-id: //depot/perl@5654
Diffstat (limited to 'os2/os2.c')
-rw-r--r-- | os2/os2.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -777,7 +777,7 @@ U32 addflag; long enough. */ a--; } - while (nargs-- >= 0) + while (--nargs >= 0) PL_Argv[nargs] = argsp[nargs]; /* Enable pathless exec if #! (as pdksh). */ pass = (buf[0] == '#' ? 2 : 3); |