Here's a repro MVM_SPESH_DISABLE=1 raku -MLibCurl::Easy -e 'my $c = LibCurl::Easy.new(URL => "https://example.com").perform; my $s; $s = $c.getinfo for ^100' and some debugging info below (I disabled spesh because there's another MoarVM bug until https://github.com/MoarVM/MoarVM/pull/1627 is merged). According to @nine at https://logs.liz.nl/moarvm/2021-12-26.html#09:49 LibCurl::Easy isn't quite using NativeCall correctly and may need a short term fix until he enables the not-really-implemented-yet functionality that LibCurl::Easy is using.
[dan@alexandria perl6]$ raku -v
Welcome to Rakudo™ v2021.12-4-g9237926eb.
Implementing the Raku® Programming Language v6.d.
Built on MoarVM version 2021.12-5-g06170c973.
[dan@alexandria perl6]$ MVM_SPESH_DISABLE=1 valgrind ./install/bin/raku -MLibCurl::Easy -e 'my $c = LibCurl::Easy.new(URL => "https://example.com").perform; my $s; $s = $c.getinfo for ^100'
==744076== Memcheck, a memory error detector
==744076== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al.
==744076== Using Valgrind-3.18.1 and LibVEX; rerun with -h for copyright info
==744076== Command: ./install/bin/raku -MLibCurl::Easy -e my\ $c\ =\ LibCurl::Easy.new(URL\ =\>\ "https://example.com").perform;\ my\ $s;\ $s\ =\ $c.getinfo\ for\ ^100
==744076==
==744076== Invalid free() / delete / delete[] / realloc()
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2F29: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2F29: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2F29: MVM_gc_allocate_frame (allocation.c:99)
==744076== by 0x4A78363: MVM_frame_move_to_heap (frame.c:641)
==744076== by 0x4A7AADA: MVM_frame_force_to_heap (frame.h:131)
==744076== by 0x4A7AADA: MVM_frame_takeclosure (frame.c:1145)
==744076== by 0x4A6BBC0: MVM_interp_run (interp.c:1153)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xfcee5b4 is 5,252 bytes inside a block of size 5,360 alloc'd
==744076== at 0x4843A83: calloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x1009CE3F: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10058B25: curl_easy_init (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x4BB5B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076== by 0x1FFEFFF82F: ???
==744076== by 0x4BB593E: dc_callvm_call_x64 (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076== by 0x10058AEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0xEB246EF: ???
==744076==
==744076== Invalid read of size 1
==744076== at 0x4844D16: strlen (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADB93C: make_wrapper.isra.0 (CArray.c:241)
==744076== by 0x4ADC0AF: at_pos (CArray.c:321)
==744076== by 0x4A5DE02: MVM_interp_run (interp.c:2017)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0x1053d3c0 is 0 bytes inside a block of size 32 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2F29: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2F29: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2F29: MVM_gc_allocate_frame (allocation.c:99)
==744076== by 0x4A78363: MVM_frame_move_to_heap (frame.c:641)
==744076== by 0x4A7AADA: MVM_frame_force_to_heap (frame.h:131)
==744076== by 0x4A7AADA: MVM_frame_takeclosure (frame.c:1145)
==744076== by 0x4A6BBC0: MVM_interp_run (interp.c:1153)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E7A9: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x100585C0: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10079BEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007A921: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B2CB: curl_mvaprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B3D9: curl_maprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x100A2DCF: curl_url_get (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1009E427: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007F86F: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10080B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10058D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x4BB5B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076==
==744076== Invalid read of size 1
==744076== at 0x4844D24: strlen (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADB93C: make_wrapper.isra.0 (CArray.c:241)
==744076== by 0x4ADC0AF: at_pos (CArray.c:321)
==744076== by 0x4A5DE02: MVM_interp_run (interp.c:2017)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0x1053d3c1 is 1 bytes inside a block of size 32 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2F29: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2F29: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2F29: MVM_gc_allocate_frame (allocation.c:99)
==744076== by 0x4A78363: MVM_frame_move_to_heap (frame.c:641)
==744076== by 0x4A7AADA: MVM_frame_force_to_heap (frame.h:131)
==744076== by 0x4A7AADA: MVM_frame_takeclosure (frame.c:1145)
==744076== by 0x4A6BBC0: MVM_interp_run (interp.c:1153)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E7A9: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x100585C0: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10079BEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007A921: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B2CB: curl_mvaprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B3D9: curl_maprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x100A2DCF: curl_url_get (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1009E427: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007F86F: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10080B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10058D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x4BB5B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076==
==744076== Invalid read of size 1
==744076== at 0x4B3B255: MVM_string_utf8_decode (utf8.c:175)
==744076== by 0x4ADB957: make_wrapper.isra.0 (CArray.c:241)
==744076== by 0x4ADC0AF: at_pos (CArray.c:321)
==744076== by 0x4A5DE02: MVM_interp_run (interp.c:2017)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0x1053d3c0 is 0 bytes inside a block of size 32 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2F29: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2F29: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2F29: MVM_gc_allocate_frame (allocation.c:99)
==744076== by 0x4A78363: MVM_frame_move_to_heap (frame.c:641)
==744076== by 0x4A7AADA: MVM_frame_force_to_heap (frame.h:131)
==744076== by 0x4A7AADA: MVM_frame_takeclosure (frame.c:1145)
==744076== by 0x4A6BBC0: MVM_interp_run (interp.c:1153)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E7A9: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x100585C0: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10079BEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007A921: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B2CB: curl_mvaprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B3D9: curl_maprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x100A2DCF: curl_url_get (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1009E427: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007F86F: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10080B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10058D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x4BB5B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076==
==744076== Invalid read of size 1
==744076== at 0x4B3B347: MVM_string_utf8_decode (utf8.c:195)
==744076== by 0x4ADB957: make_wrapper.isra.0 (CArray.c:241)
==744076== by 0x4ADC0AF: at_pos (CArray.c:321)
==744076== by 0x4A5DE02: MVM_interp_run (interp.c:2017)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0x1053d3c1 is 1 bytes inside a block of size 32 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2F29: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2F29: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2F29: MVM_gc_allocate_frame (allocation.c:99)
==744076== by 0x4A78363: MVM_frame_move_to_heap (frame.c:641)
==744076== by 0x4A7AADA: MVM_frame_force_to_heap (frame.h:131)
==744076== by 0x4A7AADA: MVM_frame_takeclosure (frame.c:1145)
==744076== by 0x4A6BBC0: MVM_interp_run (interp.c:1153)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E7A9: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x100585C0: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10079BEF: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007A921: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B2CB: curl_mvaprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007B3D9: curl_maprintf (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x100A2DCF: curl_url_get (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1009E427: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x1007F86F: ??? (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10080B05: curl_multi_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x10058D0B: curl_easy_perform (in /usr/lib/libcurl.so.4.7.0)
==744076== by 0x4BB5B04: ??? (in /home/dan/Source/perl6/install/lib/libmoar.so)
==744076==
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
==744076== Invalid read of size 2
==744076== at 0x4AEA961: gc_free (MVMCapture.c:55)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f718 is 8 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
==744076== Invalid read of size 1
==744076== at 0x4AEA982: gc_free (MVMCapture.c:57)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f71f is 15 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
==744076== Invalid read of size 2
==744076== at 0x4A4FE41: MVM_callsite_destroy (callsite.c:136)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f718 is 8 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
==744076== Invalid read of size 8
==744076== at 0x4A4FE70: MVM_free (alloc.h:43)
==744076== by 0x4A4FE70: MVM_callsite_destroy (callsite.c:137)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f710 is 0 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
==744076== Invalid read of size 8
==744076== at 0x4A4FE78: MVM_free (alloc.h:44)
==744076== by 0x4A4FE78: MVM_callsite_destroy (callsite.c:137)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f720 is 16 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
==744076== Invalid free() / delete / delete[] / realloc()
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Address 0xd04f710 is 0 bytes inside a block of size 24 free'd
==744076== at 0x484127F: free (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4ADBE8F: MVM_free (alloc.h:43)
==744076== by 0x4ADBE8F: gc_cleanup (CArray.c:145)
==744076== by 0x4ADBE8F: gc_free (CArray.c:155)
==744076== by 0x4AA6383: MVM_gc_collect_free_nursery_uncopied (collect.c:599)
==744076== by 0x4AA183E: finish_gc (orchestrate.c:245)
==744076== by 0x4AA183E: run_gc (orchestrate.c:448)
==744076== by 0x4AA2907: MVM_gc_enter_from_allocator (orchestrate.c:599)
==744076== by 0x4AA2C10: MVM_gc_allocate_nursery (allocation.c:37)
==744076== by 0x4AA2E97: MVM_gc_allocate (allocation.h:15)
==744076== by 0x4AA2E97: MVM_gc_allocate_zeroed (allocation.h:21)
==744076== by 0x4AA2E97: MVM_gc_allocate_object (allocation.c:86)
==744076== by 0x4A5514B: MVM_args_slurpy_named (args.c:1028)
==744076== by 0x4A6BD06: MVM_interp_run (interp.c:1129)
==744076== by 0x1097D7: main (main.c:474)
==744076== Block was alloc'd at
==744076== at 0x483E899: malloc (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==744076== by 0x4A50C83: MVM_malloc (alloc.h:2)
==744076== by 0x4A50C83: MVM_callsite_drop_positionals (callsite.c:376)
==744076== by 0x4AEB6E5: MVM_capture_drop_args (MVMCapture.c:355)
==744076== by 0x4B04335: MVM_disp_program_record_capture_drop_args (program.c:1325)
==744076== by 0x4B0B4A8: dispatcher_drop_arg_impl (syscall.c:152)
==744076== by 0x4B07C14: MVM_disp_program_run (program.c:3569)
==744076== by 0x4AFC89B: dispatch_monomorphic (inline_cache.c:107)
==744076== by 0x4A631BE: MVM_interp_run (interp.c:5345)
==744076== by 0x1097D7: main (main.c:474)
==744076==
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 near bytes 9f 30 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
==744076==
==744076== HEAP SUMMARY:
==744076== in use at exit: 79,596,024 bytes in 311,532 blocks
==744076== total heap usage: 875,309 allocs, 564,026 frees, 194,368,259 bytes allocated
==744076==
==744076== LEAK SUMMARY:
==744076== definitely lost: 21,371 bytes in 691 blocks
==744076== indirectly lost: 64,344 bytes in 1,408 blocks
==744076== possibly lost: 3,708,427 bytes in 11,224 blocks
==744076== still reachable: 75,801,882 bytes in 298,209 blocks
==744076== suppressed: 0 bytes in 0 blocks
==744076== Rerun with --leak-check=full to see details of leaked memory
==744076==
==744076== For lists of detected and suppressed errors, rerun with: -s
==744076== ERROR SUMMARY: 5335 errors from 11 contexts (suppressed: 0 from 0)
[dan@alexandria perl6]$ MVM_SPESH_DISABLE=1 gdb --args ./install/bin/raku -MLibCurl::Easy -e 'my $c = LibCurl::Easy.new(URL => "https://example.com").perform; my $s; $s = $c.getinfo for ^100'
GNU gdb (GDB) 11.1
Copyright (C) 2021 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<https://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from ./install/bin/raku...
(gdb) r
Starting program: /home/dan/Source/perl6/install/bin/raku -MLibCurl::Easy -e my\ \$c\ =\ LibCurl::Easy.new\(URL\ =\>\ \"https://example.com\"\).perform\;\ my\ \$s\;\ \$s\ =\ \$c.getinfo\ for\ \^100
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/usr/lib/libthread_db.so.1".
[New Thread 0x7ffff2e73640 (LWP 744143)]
[Thread 0x7ffff2e73640 (LWP 744143) exited]
free(): invalid pointer
Thread 1 "raku" received signal SIGABRT, Aborted.
0x00007ffff7493d22 in raise () from /usr/lib/libc.so.6
(gdb) bt
#0 0x00007ffff7493d22 in raise () from /usr/lib/libc.so.6
#1 0x00007ffff747d862 in abort () from /usr/lib/libc.so.6
#2 0x00007ffff74d5d28 in __libc_message () from /usr/lib/libc.so.6
#3 0x00007ffff74dd92a in malloc_printerr () from /usr/lib/libc.so.6
#4 0x00007ffff74decfc in _int_free () from /usr/lib/libc.so.6
#5 0x00007ffff74e29e8 in free () from /usr/lib/libc.so.6
#6 0x00007ffff78eae90 in MVM_free (p=<optimized out>) at src/core/alloc.h:43
#7 gc_cleanup (data=0x7ffff43cdf88, st=<optimized out>, tc=<optimized out>) at src/6model/reprs/CArray.c:145
#8 gc_free (tc=<optimized out>, obj=0x7ffff43cdf70) at src/6model/reprs/CArray.c:155
#9 0x00007ffff78b5384 in MVM_gc_collect_free_nursery_uncopied (executing_thread=executing_thread@entry=0x55555555a120, tc=tc@entry=0x55555555a120, limit=0x7ffff44fb000) at src/gc/collect.c:599
#10 0x00007ffff78b083f in finish_gc (is_coordinator=<optimized out>, gen=<optimized out>, tc=0x55555555a120) at src/gc/orchestrate.c:245
#11 run_gc (tc=tc@entry=0x55555555a120, what_to_do=what_to_do@entry=0 '\000') at src/gc/orchestrate.c:448
#12 0x00007ffff78b1908 in MVM_gc_enter_from_allocator (tc=0x55555555a120) at src/gc/orchestrate.c:599
#13 0x00007ffff78b1c11 in MVM_gc_allocate_nursery (tc=0x55555555a120, size=48) at src/gc/allocation.c:37
#14 0x00007ffff78b1e98 in MVM_gc_allocate (size=<optimized out>, tc=0x55555555a120) at src/gc/allocation.h:15
#15 MVM_gc_allocate_zeroed (size=<optimized out>, tc=0x55555555a120) at src/gc/allocation.h:21
#16 MVM_gc_allocate_object (tc=0x55555555a120, st=<optimized out>) at src/gc/allocation.c:86
#17 0x00007ffff7877939 in MVM_interp_run (tc=0x2, initial_invoke=0x7fffffffd5d0, initial_invoke@entry=0x7ffff7998780 <toplevel_initial_invoke>, invoke_data=0x7fffffffd5d0, invoke_data@entry=0x7ffff7998780 <toplevel_initial_invoke>,
outer_runloop=0x7ffff7493d22 <raise+322>, outer_runloop@entry=0x0) at src/core/interp.c:1629
#18 0x00007ffff7999895 in MVM_vm_run_file (instance=instance@entry=0x555555559590, filename=filename@entry=0x555555559520 "/home/dan/Source/perl6/install/share/perl6/runtime/perl6.moarvm") at src/moar.c:505
#19 0x00005555555557d8 in main (argc=<optimized out>, argv=0x7fffffffe338) at src/vm/moar/runner/main.c:474
(gdb) f 9
#9 0x00007ffff78b5384 in MVM_gc_collect_free_nursery_uncopied (executing_thread=executing_thread@entry=0x55555555a120, tc=tc@entry=0x55555555a120, limit=0x7ffff44fb000) at src/gc/collect.c:599
599 REPR(obj)->gc_free(tc, obj);
(gdb) call MVM_dump_backtrace(tc)
at SETTING::src/core.c/Array.pm6:23 (/home/dan/Source/perl6/install/share/perl6/runtime/CORE.c.setting.moarvm:push)
from SETTING::src/core.c/List.pm6:592 (/home/dan/Source/perl6/install/share/perl6/runtime/CORE.c.setting.moarvm:push-until-lazy)
from SETTING::src/core.c/List.pm6:107 (/home/dan/Source/perl6/install/share/perl6/runtime/CORE.c.setting.moarvm:reify-until-lazy)
from SETTING::src/core.c/List.pm6:273 (/home/dan/Source/perl6/install/share/perl6/runtime/CORE.c.setting.moarvm:from-slurpy-flat)
from site#sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy):718 (/home/dan/.raku/precomp/9FC383D0CB840589EBEA7A812873CFBBE417B2E6/91/917D98459B37845C474AF03923465900BC1B0D1F:getinfo)
from site#sources/917D98459B37845C474AF03923465900BC1B0D1F (LibCurl::Easy):729 (/home/dan/.raku/precomp/9FC383D0CB840589EBEA7A812873CFBBE417B2E6/91/917D98459B37845C474AF03923465900BC1B0D1F:getinfo)
from -e:1 (<ephemeral file>:)
from -e:1 (<ephemeral file>:<unit>)
from -e:1 (<ephemeral file>:<unit-outer>)
from gen/moar/stage2/NQPHLL.nqp:1949 (/home/dan/Source/perl6/install/share/nqp/lib/NQPHLL.moarvm:eval)
from gen/moar/stage2/NQPHLL.nqp:2059 (/home/dan/Source/perl6/install/share/nqp/lib/NQPHLL.moarvm:)
from gen/moar/stage2/NQPHLL.nqp:2058 (/home/dan/Source/perl6/install/share/nqp/lib/NQPHLL.moarvm:command_eval)
from gen/moar/Compiler.nqp:111 (/home/dan/Source/perl6/install/share/perl6/lib/Perl6/Compiler.moarvm:command_eval)
from gen/moar/stage2/NQPHLL.nqp:2039 (/home/dan/Source/perl6/install/share/nqp/lib/NQPHLL.moarvm:command_line)
from gen/moar/rakudo.nqp:127 (/home/dan/Source/perl6/install/share/perl6/runtime/perl6.moarvm:MAIN)
from gen/moar/rakudo.nqp:1 (/home/dan/Source/perl6/install/share/perl6/runtime/perl6.moarvm:<mainline>)
from <unknown>:1 (/home/dan/Source/perl6/install/share/perl6/runtime/perl6.moarvm:<main>)
from <unknown>:1 (/home/dan/Source/perl6/install/share/perl6/runtime/perl6.moarvm:<entry>)
(gdb) call MVM_dump_bytecode(tc)
00000 checkarity 2, 2
00001 param_rp_o loc_3_obj, 0
00002 dispatch_o loc_7_obj, 'lang-hllize', Callsite_1, loc_3_obj
00003 set loc_3_obj, loc_7_obj
00004 decont loc_7_obj, loc_3_obj
00005 set loc_12_obj, loc_7_obj
00006 wval_wide loc_7_obj, 0, 33712
00007 istype loc_13_int, loc_12_obj, loc_7_obj
00008 assertparamcheck loc_13_int
00009 set loc_0_obj, loc_12_obj
00010 param_rp_o loc_4_obj, 1
00011 dispatch_o loc_7_obj, 'lang-hllize', Callsite_1, loc_4_obj
00012 -> set loc_4_obj, loc_7_obj
00013 set loc_2_obj, loc_4_obj
00014 param_sn loc_5_obj
annotation: SETTING::src/core.c/Array.pm6:23
00015 wval_wide loc_6_obj, 0, 33712
00016 getattr_o loc_7_obj, loc_0_obj, loc_6_obj, '$!target', 0
00017 wval loc_8_obj, 2, 28
00018 create loc_8_obj, loc_8_obj
00019 wval loc_9_obj, 2, 28
00020 wval_wide loc_10_obj, 0, 33712
00021 getattr_o loc_11_obj, loc_0_obj, loc_10_obj, '$!descriptor', 1
00022 bindattr_o loc_8_obj, loc_9_obj, '$!descriptor', loc_11_obj, -1
00023 set loc_6_obj, loc_8_obj
00024 decont loc_8_obj, loc_2_obj
00025 dispatch_v 'raku-assign', Callsite_9, loc_6_obj, loc_8_obj
00026 push_o loc_7_obj, loc_6_obj
00027 wval loc_6_obj, 2, 25
00028 return_o loc_6_obj
(gdb)
Here's a repro
MVM_SPESH_DISABLE=1 raku -MLibCurl::Easy -e 'my $c = LibCurl::Easy.new(URL => "https://example.com").perform; my $s; $s = $c.getinfo for ^100'
and some debugging info below (I disabled spesh because there's another MoarVM bug until https://github.com/MoarVM/MoarVM/pull/1627 is merged). According to @nine at https://logs.liz.nl/moarvm/2021-12-26.html#09:49 LibCurl::Easy isn't quite using NativeCall correctly and may need a short term fix until he enables the not-really-implemented-yet functionality that LibCurl::Easy is using.