projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
0b7042f
)
Restoring change #28523 accidentilly reverted with change #28528.
Steve Peters [Mon, 10 Jul 2006 19:12:07 +0000 (19:12 +0000)]
p4raw-link: @28528 on //depot/perl:
28f0d0ec424c9050a6c7d38541d2e6b5e66fb97c
p4raw-link: @28523 on //depot/perl:
46147bce9215db8642f2bdc9a2e9e60e27f046e3
p4raw-id: //depot/perl@28536
doio.c
patch
|
blob
|
blame
|
history
diff --git
a/doio.c
b/doio.c
index
29b5b19
..
809459f
100644
(file)
--- a/
doio.c
+++ b/
doio.c
@@
-2273,7
+2273,7
@@
Perl_do_shmio(pTHX_ I32 optype, SV **mark, SV **sp)
STRLEN len;
const char *mbuf = SvPV_const(mstr, len);
- const I32 n = (len > msize) ? msize : len;
+ const I32 n = ((I32)len > msize) ? msize : (I32)len;
Copy(mbuf, shm + mpos, n, char);
if (n < msize)
memzero(shm + mpos + n, msize - n);