Skip to content

Instantly share code, notes, and snippets.

@melezhik
Created December 24, 2021 02:30
Show Gist options
  • Save melezhik/812837c045325cb33526fab049059316 to your computer and use it in GitHub Desktop.
Save melezhik/812837c045325cb33526fab049059316 to your computer and use it in GitHub Desktop.
Curlie in loop bug
$ raku -MCurlie -e 'my $c = Curlie.new; for 1 .. 400 { $c.get: "https://httpbin.org/get" }'
Cannot assign to an immutable value
in method getinfo_long at /Users/alex/projects/rakudo/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 898
in method getinfo at /Users/alex/projects/rakudo/install/share/perl6/site/precomp/F75BA6B78195FB4BB18737386572FE4C5789AFB8/91/917D98459B37845C474AF03923465900BC1B0D1F line 688
in method success at /Users/alex/projects/rakudo/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 678
in method do-request at /Users/alex/projects/rakudo/install/share/perl6/site/sources/49AFEACA07019B071B7F9AD205404DB927DCAD15 (Curlie) line 164
in method get at /Users/alex/projects/rakudo/install/share/perl6/site/sources/49AFEACA07019B071B7F9AD205404DB927DCAD15 (Curlie) line 63
in block at /Users/alex/projects/rakudo/install/share/perl6/site/sources/45334C557865A97D1ECA0D3F3A3FAF2017FCE553 (OO::Monitors) line 31
in block <unit> at -e line 1
q
@melezhik
Copy link
Author

melezhik commented Dec 24, 2021 via email

@MasterDuke17
Copy link

valgrind output:

[dan@alexandria perl6]$ MVM_SPESH_DISABLE=1 valgrind ./install/bin/raku -MCurlie -e 'my $c = Curlie.new; $c.get: "https://example.com"; my $s; $s = $c.lce.getinfo for ^1_000'
==545528== Memcheck, a memory error detector
==545528== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==545528== Using Valgrind-3.17.0 and LibVEX; rerun with -h for copyright info
==545528== Command: ./install/bin/raku -MCurlie -e my\ $c\ =\ Curlie.new;\ $c.get:\ "https://example.com";\ my\ $s;\ $s\ =\ $c.lce.getinfo\ for\ ^1_000
==545528== 
==545528== Invalid free() / delete / delete[] / realloc()
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1F29: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1F29: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1F29: MVM_gc_allocate_frame (allocation.c:99)
==545528==    by 0x4A77363: MVM_frame_move_to_heap (frame.c:641)
==545528==    by 0x4A572EA: MVM_frame_force_to_heap (frame.h:131)
==545528==    by 0x4A572EA: MVM_exception_throwobj (exceptions.c:759)
==545528==    by 0x4A57F29: MVM_interp_run (interp.c:1201)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xf72c540 is 5,200 bytes inside a block of size 5,360 alloc'd
==545528==    at 0x48435FF: calloc (vg_replace_malloc.c:1117)
==545528==    by 0x11CFDE3F: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CB9B25: curl_easy_init (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x4BB4B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x1FFEFFF84F: ???
==545528==    by 0x4BB493E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x11CB9AEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0xF72900F: ???
==545528==    by 0x515221F: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0xF72900F: ???
==545528==    by 0x1FFEFFF86F: ???
==545528==    by 0x4BB4528: dcCallPointer (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528== 
==545528== Invalid read of size 1
==545528==    at 0x48447B2: strlen (vg_replace_strmem.c:469)
==545528==    by 0x4ADA93C: make_wrapper.isra.0 (CArray.c:241)
==545528==    by 0x4ADB0AF: at_pos (CArray.c:321)
==545528==    by 0x4A5CE02: MVM_interp_run (interp.c:2017)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xf182150 is 0 bytes inside a block of size 25 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1F29: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1F29: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1F29: MVM_gc_allocate_frame (allocation.c:99)
==545528==    by 0x4A77363: MVM_frame_move_to_heap (frame.c:641)
==545528==    by 0x4A572EA: MVM_frame_force_to_heap (frame.h:131)
==545528==    by 0x4A572EA: MVM_exception_throwobj (exceptions.c:759)
==545528==    by 0x4A57F29: MVM_interp_run (interp.c:1201)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x11CC7E89: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCB6D7: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCC253: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CFB067: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE02B4: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE1B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CB9D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x4BB4B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x1FFEFFF84F: ???
==545528==    by 0x4BB493E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x11CB9B5F: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528== 
==545528== Invalid read of size 1
==545528==    at 0x48447C4: strlen (vg_replace_strmem.c:469)
==545528==    by 0x4ADA93C: make_wrapper.isra.0 (CArray.c:241)
==545528==    by 0x4ADB0AF: at_pos (CArray.c:321)
==545528==    by 0x4A5CE02: MVM_interp_run (interp.c:2017)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xf182151 is 1 bytes inside a block of size 25 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1F29: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1F29: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1F29: MVM_gc_allocate_frame (allocation.c:99)
==545528==    by 0x4A77363: MVM_frame_move_to_heap (frame.c:641)
==545528==    by 0x4A572EA: MVM_frame_force_to_heap (frame.h:131)
==545528==    by 0x4A572EA: MVM_exception_throwobj (exceptions.c:759)
==545528==    by 0x4A57F29: MVM_interp_run (interp.c:1201)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x11CC7E89: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCB6D7: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCC253: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CFB067: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE02B4: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE1B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CB9D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x4BB4B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x1FFEFFF84F: ???
==545528==    by 0x4BB493E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x11CB9B5F: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528== 
==545528== Invalid read of size 1
==545528==    at 0x4B3A255: MVM_string_utf8_decode (utf8.c:175)
==545528==    by 0x4ADA957: make_wrapper.isra.0 (CArray.c:241)
==545528==    by 0x4ADB0AF: at_pos (CArray.c:321)
==545528==    by 0x4A5CE02: MVM_interp_run (interp.c:2017)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xf182150 is 0 bytes inside a block of size 25 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1F29: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1F29: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1F29: MVM_gc_allocate_frame (allocation.c:99)
==545528==    by 0x4A77363: MVM_frame_move_to_heap (frame.c:641)
==545528==    by 0x4A572EA: MVM_frame_force_to_heap (frame.h:131)
==545528==    by 0x4A572EA: MVM_exception_throwobj (exceptions.c:759)
==545528==    by 0x4A57F29: MVM_interp_run (interp.c:1201)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x11CC7E89: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCB6D7: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCC253: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CFB067: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE02B4: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE1B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CB9D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x4BB4B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x1FFEFFF84F: ???
==545528==    by 0x4BB493E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x11CB9B5F: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528== 
==545528== Invalid read of size 1
==545528==    at 0x4B3A347: MVM_string_utf8_decode (utf8.c:195)
==545528==    by 0x4ADA957: make_wrapper.isra.0 (CArray.c:241)
==545528==    by 0x4ADB0AF: at_pos (CArray.c:321)
==545528==    by 0x4A5CE02: MVM_interp_run (interp.c:2017)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xf182151 is 1 bytes inside a block of size 25 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1F29: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1F29: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1F29: MVM_gc_allocate_frame (allocation.c:99)
==545528==    by 0x4A77363: MVM_frame_move_to_heap (frame.c:641)
==545528==    by 0x4A572EA: MVM_frame_force_to_heap (frame.h:131)
==545528==    by 0x4A572EA: MVM_exception_throwobj (exceptions.c:759)
==545528==    by 0x4A57F29: MVM_interp_run (interp.c:1201)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x11CC7E89: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCB6D7: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CCC253: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CFB067: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE02B4: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CE1B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x11CB9D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==545528==    by 0x4BB4B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x1FFEFFF84F: ???
==545528==    by 0x4BB493E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==545528==    by 0x11CB9B5F: ??? (in /usr/lib/libcurl.so.4.7.0)
==545528== 
WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

==545528== Invalid read of size 2
==545528==    at 0x4AE9961: gc_free (MVMCapture.c:55)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e398 is 8 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
==545528== Invalid read of size 1
==545528==    at 0x4AE9982: gc_free (MVMCapture.c:57)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e39f is 15 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
==545528== Invalid read of size 2
==545528==    at 0x4A4EE41: MVM_callsite_destroy (callsite.c:136)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e398 is 8 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
==545528== Invalid read of size 8
==545528==    at 0x4A4EE70: MVM_free (alloc.h:43)
==545528==    by 0x4A4EE70: MVM_callsite_destroy (callsite.c:137)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e390 is 0 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
==545528== Invalid read of size 8
==545528==    at 0x4A4EE78: MVM_free (alloc.h:44)
==545528==    by 0x4A4EE78: MVM_callsite_destroy (callsite.c:137)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e3a0 is 16 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
==545528== Invalid free() / delete / delete[] / realloc()
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Address 0xd61e390 is 0 bytes inside a block of size 24 free'd
==545528==    at 0x484118B: free (vg_replace_malloc.c:755)
==545528==    by 0x4ADAE8F: MVM_free (alloc.h:43)
==545528==    by 0x4ADAE8F: gc_cleanup (CArray.c:145)
==545528==    by 0x4ADAE8F: gc_free (CArray.c:155)
==545528==    by 0x4AA5383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==545528==    by 0x4AA083E: finish_gc (orchestrate.c:245)
==545528==    by 0x4AA083E: run_gc (orchestrate.c:448)
==545528==    by 0x4AA1907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==545528==    by 0x4AA1C10: MVM_gc_allocate_nursery (allocation.c:37)
==545528==    by 0x4AA1E97: MVM_gc_allocate (allocation.h:15)
==545528==    by 0x4AA1E97: MVM_gc_allocate_zeroed (allocation.h:21)
==545528==    by 0x4AA1E97: MVM_gc_allocate_object (allocation.c:86)
==545528==    by 0x4AB84EC: MVM_repr_clone (reprconv.c:32)
==545528==    by 0x4A79CCB: MVM_frame_vivify_lexical (frame.c:1226)
==545528==    by 0x4A6D78A: MVM_interp_run (interp.c:395)
==545528==    by 0x1097D7: main (main.c:474)
==545528==  Block was alloc'd at
==545528==    at 0x483E7C5: malloc (vg_replace_malloc.c:380)
==545528==    by 0x4A4FC83: MVM_malloc (alloc.h:2)
==545528==    by 0x4A4FC83: MVM_callsite_drop_positionals (callsite.c:376)
==545528==    by 0x4AEA6E5: MVM_capture_drop_args (MVMCapture.c:355)
==545528==    by 0x4B03335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==545528==    by 0x4B0A4A8: dispatcher_drop_arg_impl (syscall.c:152)
==545528==    by 0x4B06C14: MVM_disp_program_run (program.c:3569)
==545528==    by 0x4AFB89B: dispatch_monomorphic (inline_cache.c:107)
==545528==    by 0x4A621BE: MVM_interp_run (interp.c:5345)
==545528==    by 0x1097D7: main (main.c:474)
==545528== 
WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

WARNING: unhandled Failure detected in DESTROY. If you meant to ignore it, you can mark it as handled by calling .Bool, .so, .not, or .defined methods. The Failure was:
X::StubCode with no message
  in method getinfo_certinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 943
  in block  at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 701
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 687
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

Malformed UTF-8 at line 1 col 1
  in method <anon> at /home/dan/Source/perl6/install/share/perl6/core/sources/8660F65A7B3492675BB3B2058DB30E411A4C4E54 (NativeCall::Types) line 170
  in method getinfo_str at /home/dan/Source/perl6/install/share/perl6/site/sources/4C3E08F15178D3444F73775C0B6BADC1E61100A6 (LibCurl::EasyHandle) line 924
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 690
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 722
  in method getinfo at /home/dan/Source/perl6/install/share/perl6/site/sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy) line 729
  in block <unit> at -e line 1

==545528== 
==545528== HEAP SUMMARY:
==545528==     in use at exit: 92,056,118 bytes in 331,288 blocks
==545528==   total heap usage: 1,011,348 allocs, 680,359 frees, 271,023,773 bytes allocated
==545528== 
==545528== LEAK SUMMARY:
==545528==    definitely lost: 21,460 bytes in 780 blocks
==545528==    indirectly lost: 64,344 bytes in 1,408 blocks
==545528==      possibly lost: 4,765,258 bytes in 11,441 blocks
==545528==    still reachable: 87,205,056 bytes in 317,659 blocks
==545528==         suppressed: 0 bytes in 0 blocks
==545528== Rerun with --leak-check=full to see details of leaked memory
==545528== 
==545528== For lists of detected and suppressed errors, rerun with: -s
==545528== ERROR SUMMARY: 5303 errors from 11 contexts (suppressed: 0 from 0)

@melezhik
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment