summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Mai <l.mai@web.de>2015-02-21 11:29:45 +0100
committerLukas Mai <l.mai@web.de>2015-02-21 11:29:45 +0100
commitadc55e020e9dd90e3092c97ee7db0912097c4a7e (patch)
tree91ac2b1f682b6b31529c1f7131491ee074c897f2
parent2f553ae1e126e9a08281bcc6d4e6b8ea2afe83a3 (diff)
downloadperl-adc55e020e9dd90e3092c97ee7db0912097c4a7e.tar.gz
add missing infnan context under thread/quadmath builds
-rw-r--r--numeric.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numeric.c b/numeric.c
index a6f6018adc..388f363237 100644
--- a/numeric.c
+++ b/numeric.c
@@ -1381,7 +1381,7 @@ Perl_my_atof2(pTHX_ const char* orig, NV* value)
#ifdef USE_QUADMATH
{
char* endp;
- if ((endp = S_my_atof_infnan(s, negative, send, value)))
+ if ((endp = S_my_atof_infnan(aTHX_ s, negative, send, value)))
return endp;
result[2] = strtoflt128(s, &endp);
if (s != endp) {