projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
676f44e
)
It should never be possible for SvGMAGICAL() to be true on SVt_IV.
Nicholas Clark [Sat, 29 Apr 2006 21:54:38 +0000 (21:54 +0000)]
p4raw-id: //depot/perl@28017
doio.c
patch
|
blob
|
blame
|
history
diff --git
a/doio.c
b/doio.c
index
507a855
..
e1cc258
100644
(file)
--- a/
doio.c
+++ b/
doio.c
@@
-1240,7
+1240,7
@@
Perl_do_print(pTHX_ register SV *sv, PerlIO *fp)
return TRUE;
case SVt_IV:
if (SvIOK(sv)) {
- SvGETMAGIC(sv);
+ assert(!SvGMAGICAL(sv));
if (SvIsUV(sv))
PerlIO_printf(fp, "%"UVuf, (UV)SvUVX(sv));
else