in reply to Missing Hash Keys When Hash Created in Sub

Bisecting shows this bug was fixed by 4596056478d3a as a fix for RT#31865, and the fix was part of the Perl v5.14.0 release:

When assigning a list with duplicated keys to a hash, the assignment used to return garbage and/or freed values:

@a = %h = (list with some duplicate keys);

This has now been fixed.

Replies are listed 'Best First'.
Re^2: Missing Hash Keys When Hash Created in Sub
by Stringer (Acolyte) on Feb 24, 2015 at 00:13 UTC
    Thank you!