projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4329bef
)
lib/tie-substrhash.t FAILED at test 11
Roca, Ignasi [Wed, 17 Jan 2001 15:16:43 +0000 (16:16 +0100)]
Message-ID: <
5930DC161690D2119667009027157547038C8A85
@madt009a.siemens.es>
pp_int() was dropping an NV to the floor,
int(
279964589018079
/59) either returned not an integer
4745162525730
.15, or one got "Attempt to free unreferenced scalar."
p4raw-id: //depot/perl@8464
pp.c
patch
|
blob
|
blame
|
history
diff --git
a/pp.c
b/pp.c
index
87e459e
..
d9b0685
100644
(file)
--- a/
pp.c
+++ b/
pp.c
@@
-2604,6
+2604,7
@@
PP(pp_int)
(void)Perl_modf(tmp, &tmp);
value = (NV)tmp;
#endif
+ SETn(value);
}
}
else {