projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
174830c
)
syswrite prints garbage if called with empty scalar and non-zero offset
chromatic [Mon, 27 Jul 2009 12:44:15 +0000 (14:44 +0200)]
pp_sys.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_sys.c
b/pp_sys.c
index
23f79ba
..
ec12cd4
100644
(file)
--- a/
pp_sys.c
+++ b/
pp_sys.c
@@
-1919,7
+1919,7
@@
PP(pp_send)
DIE(aTHX_ "Offset outside string");
}
offset += blen_chars;
- } else if (offset >= (IV)blen_chars && blen_chars > 0) {
+ } else if (offset >= (IV)blen_chars) {
Safefree(tmpbuf);
DIE(aTHX_ "Offset outside string");
}