*** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T18:04:14Z http://stackoverflow.com/feeds/question/882422 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/882422/-glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138 3 *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** Neer 2009-05-19T12:23:11Z 2009-05-19T19:55:54Z <p>While running a perl program I encountered the following error</p> <pre> *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** /lib/tls/i686/cmov/libc.so.6[0xb7daea85] /lib/tls/i686/cmov/libc.so.6(cfree+0x90)[0xb7db24f0] perl(Perl_pregfree+0x3e)[0x80a004e] perl(perl_destruct+0xcf1)[0x806b711] /usr/local/lib/perl/5.8.8/auto/threads/threads.so[0xb79d2dfb] /usr/local/lib/perl/5.8.8/auto/threads/threads.so[0xb79d2f9b] /usr/local/lib/perl/5.8.8/auto/threads/threads.so[0xb79d5fbb] /lib/tls/i686/cmov/libpthread.so.0[0xb7e974fb] /lib/tls/i686/cmov/libc.so.6(clone+0x5e)[0xb7e19e5e] </pre> <p>My OS is Ubuntu 8.04, Perl version is 5.8.8 </p> <p>My scripts contains threads ... I cannot share the code but wanted to know if anyone has had experience with this type of errors and how you had resolved/approached/analysed it. Are there any tools/logs that i could refer to inaddition to work on this sort of issues. </p> <p>Thank you for your support.</p> <p>P.S: I know that threads are not the ideal friends for anyone. However I do not control decision of using perl. I am just maintaining the code.</p> http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/882483#882483 1 Answer by dsm for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** dsm 2009-05-19T12:34:32Z 2009-05-19T12:34:32Z <p>The most likely cause is an incompatible version of glibc. You need to run Perl with the version of glibc with which it was compiled</p> http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/882491#882491 1 Answer by Kevin Beck for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** Kevin Beck 2009-05-19T12:36:42Z 2009-05-19T12:36:42Z <p>This looks like an error internal to Perl. The "double free or corruption" refers to memory being freed twice, or corrupted. Perl manages memory for you, so this should never happen if Perl is working correctly.</p> <p>Is there a newer version of Perl you can upgrade to?</p> http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/882728#882728 1 Answer by newt for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** newt 2009-05-19T13:24:09Z 2009-05-19T13:24:09Z <p><a href="http://www.nntp.perl.org/group/perl.perl5.porters/2007/07/msg127119.html" rel="nofollow">This thread</a> on the perl5 porters mailing list seems to indicate that it's a known problem with 5.8.8 and threads. I think your problem is probably due to a code problem that isn't caught by perl. </p> <p>If you can, I would suggest stripping down the code to a minimal example. You should then be able to attempt to fix the code problem. </p> http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/884052#884052 1 Answer by Kent Fredric for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** Kent Fredric 2009-05-19T17:25:04Z 2009-05-19T17:25:04Z <p>open your code and put in it <em>somewhere</em> before where the problem occurs: </p> <pre><code>$DB::single=1; </code></pre> <p>Then run </p> <pre><code>PERL5OPT='-dt' perl yourscript.pl </code></pre> <p>and hit </p> <pre>c[enter]</pre> <p>repeatedly until the problem recurs. ( Keeping note of whether it stops at your manual breakpoint or not before failing ).</p> <p>Then iteratively move the manual breakpoint forward/back until you have it <em>just</em> before your termination point ( you could find the death point with a bunch of print commands also ), and then try work from there, possibly with pre-crash introspection. </p> <p>This will (hopefully) help you generate a test-case which exhibits the problem. </p> http://stackoverflow.com/questions/882422/glibc-detected-perl-double-free-or-corruption-prev-0x0c2b7138/884720#884720 0 Answer by Alexandr Ciornii for *** glibc detected *** perl: double free or corruption (!prev): 0x0c2b7138 *** Alexandr Ciornii 2009-05-19T19:55:54Z 2009-05-19T19:55:54Z <p>Try updating 'threads' and 'threads::shared' modules from CPAN.</p>