Subject: | infinite loop in string_to_uint128() |
Date: | Fri, 06 Feb 2015 17:02:43 -0500 |
To: | bug-Math-Int128 [...] rt.cpan.org |
From: | Matt Sisk <sisk [...] cert.org> |
Hi there,
I'm encountering an infinite loop when I do the following:
#!/usr/bin/perl
use strict;
use warnings;
use Math::Int128 qw( string_to_uint128 );
use Math::Int128::die_on_overflow;
my $str = "0xffffffffffffffffffffffffffffffff";
my $val = string_to_uint128($str);
print "ok: $val\n";
This is with version 0.18.
Do you need any more information from me?
Thanks,
Matt