I have the following 3 line example to show the error:
use strict;
use warnings;
use Wx;
It works fine when I run it with perl -w hue5.pl
. However, when I add the debugging option and start if with perl -w -d hue5.pl
, a problem emerges and perl runtime crashes saying:
Loading DB routines from perl5db.pl version 1.55 Editor support available.
Enter h or 'h h' for help, or 'man perldebug' for more help.
Wx::CODE(0x5604c197ca80)(/usr/lib64/perl5/vendor_perl/Wx.pm:154): 154: UnsetConstants() if defined &UnsetConstants; double free or corruption (!prev) Aborted (core dumped)
I use perl v5.30.3 on 64 bit Linux (up-to-date Fedora release 31) and Wx installed from the binary package perl-Wx-0.9932-15.fc31.x86_64.rpm.
Is anybody else having this issue?
Short version: Uninstalling the package
perl-Term-ReadLine-Gnu
solved the issue.Longer version: I saw that the issue does not always happen. In fact, it seems to depend on the size of the process environment. At one point of debugging I could make the crash appear by declaring in the
bash
(note: withoutexport
the issue does not show)and disappear by
Finally, during further experimentation, I once got a more elaborate failure message pointing right to Readline/Gnu:
For the curious, I note that line 504 in /usr/lib64/perl5/vendor_perl/Term/ReadLine/Gnu.pm was:
For the even more curious I add
strace
dumps generated by runs which differ only with regard to the absence/presence ofSOMEVAR
in the environment (note that the name does not seem to have importance, I first got into the direction of environment differences by observing different behaviour depending onOLDPWD
).First without the issue (i.e. without variable
SOMEVAR
), quoting the lines as of loading Readline/Gnu library:Second with the issue (i.e. wit exported variable
SOMEVAR
), again quoting only the lines as of loading Readline/Gnu library: