projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
064096e
)
Fix OS/2-specific buffer overflow
author
Ilya Zakharevich
<ilya@math.ohio-state.edu>
Wed, 30 Apr 1997 19:20:01 +0000
(15:20 -0400)
committer
Chip Salzenberg
<chip@atlantic.net>
Wed, 30 Apr 1997 12:00:00 +0000
(
00:00
+1200)
private-msgid:
199704301920
.PAA09681@monk.mps.ohio-state.edu
os2/os2.c
patch
|
blob
|
history
diff --git
a/os2/os2.c
b/os2/os2.c
index
b658ea8
..
c45dfec
100644
(file)
--- a/
os2/os2.c
+++ b/
os2/os2.c
@@
-321,7
+321,7
@@
int execf;
if (strnEQ(cmd,"/bin/sh",7) && isSPACE(cmd[7])) {
STRLEN l = strlen(sh_path);
- New(1302, news, strlen(cmd) - 7 + l, char);
+ New(1302, news, strlen(cmd) - 7 + l
+ 1
, char);
strcpy(news, sh_path);
strcpy(news + l, cmd + 7);
cmd = news;