You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I used CI Fuzz to fuzz the pegtl json parser. I found a stack overflow in marke.hpp.
The bug is triggered by a input consisting of a large number of opening square brackets "[".
I don't understand the code well enough to see why this happens, but I hope the attached crash logs can help you.
If I can provide any further information or help feel free to ask.
Thank you for the report, but I already explained this when I was at your office (although I don't remember exactly whom I explained it to). The PEGTL allows you to write recursive descent parsers, so by default it is easy to trigger stack overflows. While other parser libraries take the approach to always limit the depth of the recursion, this has a runtime cost associated with it. This might not be necessary when you have trusted input or the input itself is reasonably limited (e.g. by it length). Following the C++ philosophy of "you don't pay for what you don't use", the PEGTL therefore relies on the user that is creating a parser to take care of detecting and limiting the recursion depth if necessary.
An example of how this can be done and what benefits it offers can be found in our JSON library taoJSON, not to be confused with the simple examples that we added to the PEGTL. There you will find that the parser does allow unbound recursion by default and you can add an optional limiter when needed, i.e. when parsing untrusted input. This is implemented in https://github.com/taocpp/json/blob/master/include/tao/json/events/limit_nesting_depth.hpp. The benefit of this approach is that in the context of a given grammar there are usually only very few rules that actually allow the recursion itself to happen. In the case of JSON, this is limited to arrays and objects - and as you can see in the above limiter, we only check the depth at those events. We therefore skip a lot of intermediate stack frames and a lot of intermediate code layers which makes the overall parsing more efficient.
That said, it might be beneficial to offer a more generic (but still optional) limiter that can be applied to any grammar. I'll see if I can come up with something, but even then this won't be a part of most examples by default.
Finally, the specific location of the stack overflow (match.hpp) probably doesn't matter much in this case. It will be any of the methods that participate in the recursion which spans quite a bit of code. (Plus the backtrace is incomplete)
I've added an (experimental) limiter, it's used in json_parse.cpp with a maximum depth of 42 (counting nested JSON values). Is that the example you were using?
Hello,
I used CI Fuzz to fuzz the pegtl json parser. I found a stack overflow in marke.hpp.
The bug is triggered by a input consisting of a large number of opening square brackets "[".
I don't understand the code well enough to see why this happens, but I hope the attached crash logs can help you.
If I can provide any further information or help feel free to ask.
==25==ERROR: AddressSanitizer: stack-overflow on address 0x7fff7fb50e68 (pc 0x0000004ca376 bp 0x7fff7fb516b0 sp 0x7fff7fb50e70 T0)
#0 0x4ca376 in __asan_memcpy /llvmbuild/llvm-project-llvmorg-11.0.0/compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp:22:3
#1 0x4ffa34 in tao::pegtl::internal::marker<tao::pegtl::internal::iterator, (tao::pegtl::rewind_mode)1>::marker(tao::pegtl::internal::iterator&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/marker.hpp:42:12
#2 0x4ff420 in tao::pegtl::internal::marker<tao::pegtl::internal::iterator, (tao::pegtl::rewind_mode)1> tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >::mark<(tao::pegtl::rewind_mode)1>() /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/memory_input.hpp:331:17
#3 0x505eab in bool tao::pegtl::internal::seq<tao::pegtl::ascii::one<(char)34>, tao::pegtl::musttao::pegtl::json::string_content, tao::pegtl::ascii::any>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:46:34
#4 0x505cd9 in decltype(tao::pegtl::json::string::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::string, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#5 0x505ba9 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::string, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#6 0x505749 in auto tao::pegtl::match<tao::pegtl::json::string, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#7 0x504e59 in bool tao::pegtl::normaltao::pegtl::json::string::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#8 0x562d4c in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(std::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul>, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:45:19
#9 0x562c59 in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:58:17
#10 0x562b69 in decltype(tao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#11 0x562a79 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#12 0x562639 in auto tao::pegtl::match<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#13 0x5622e9 in bool tao::pegtl::normaltao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#14 0x5620e3 in bool tao::pegtl::internal::seq<tao::pegtl::json::value, tao::pegtl::internal::startao::pegtl::json::ws >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#15 0x561eb9 in decltype(tao::pegtl::json::array_element::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#16 0x561d89 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#17 0x561929 in auto tao::pegtl::match<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#18 0x5614e9 in bool tao::pegtl::normaltao::pegtl::json::array_element::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#19 0x5611f6 in bool tao::pegtl::internal::seq<tao::pegtl::json::array_element, tao::pegtl::internal::star<tao::pegtl::json::value_separator, tao::pegtl::internal::musttao::pegtl::json::array_element > >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#20 0x560f99 in decltype(tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#21 0x560e69 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#22 0x560a09 in auto tao::pegtl::match<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#23 0x5606b9 in bool tao::pegtl::normal<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void> >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#24 0x5605c9 in bool tao::pegtl::internal::opt<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void> >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/opt.hpp:47:16
#25 0x5604d9 in decltype(tao::pegtl::json::array_content::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#26 0x5603a9 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#27 0x55ff49 in auto tao::pegtl::match<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#28 0x55de29 in bool tao::pegtl::normaltao::pegtl::json::array_content::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#29 0x55da42 in bool tao::pegtl::internal::seq<tao::pegtl::json::begin_array, tao::pegtl::json::array_content, tao::pegtl::musttao::pegtl::json::end_array >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#30 0x55d729 in decltype(tao::pegtl::json::array::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#31 0x55d5f9 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#32 0x55d199 in auto tao::pegtl::match<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#33 0x505129 in bool tao::pegtl::normaltao::pegtl::json::array::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#34 0x562f59 in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(std::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul>, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:45:19
#35 0x562c59 in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:58:17
#36 0x562b69 in decltype(tao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#37 0x562a79 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#38 0x562639 in auto tao::pegtl::match<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#39 0x5622e9 in bool tao::pegtl::normaltao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#40 0x5620e3 in bool tao::pegtl::internal::seq<tao::pegtl::json::value, tao::pegtl::internal::startao::pegtl::json::ws >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#41 0x561eb9 in decltype(tao::pegtl::json::array_element::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#42 0x561d89 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#43 0x561929 in auto tao::pegtl::match<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#44 0x5614e9 in bool tao::pegtl::normaltao::pegtl::json::array_element::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#45 0x5611f6 in bool tao::pegtl::internal::seq<tao::pegtl::json::array_element, tao::pegtl::internal::star<tao::pegtl::json::value_separator, tao::pegtl::internal::musttao::pegtl::json::array_element > >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#46 0x560f99 in decltype(tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#47 0x560e69 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#48 0x560a09 in auto tao::pegtl::match<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void>, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#49 0x5606b9 in bool tao::pegtl::normal<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void> >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#50 0x5605c9 in bool tao::pegtl::internal::opt<tao::pegtl::list_must<tao::pegtl::json::array_element, tao::pegtl::json::value_separator, void> >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/opt.hpp:47:16
#51 0x5604d9 in decltype(tao::pegtl::json::array_content::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#52 0x5603a9 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#53 0x55ff49 in auto tao::pegtl::match<tao::pegtl::json::array_content, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#54 0x55de29 in bool tao::pegtl::normaltao::pegtl::json::array_content::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#55 0x55da42 in bool tao::pegtl::internal::seq<tao::pegtl::json::begin_array, tao::pegtl::json::array_content, tao::pegtl::musttao::pegtl::json::end_array >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#56 0x55d729 in decltype(tao::pegtl::json::array::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#57 0x55d5f9 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#58 0x55d199 in auto tao::pegtl::match<tao::pegtl::json::array, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#59 0x505129 in bool tao::pegtl::normaltao::pegtl::json::array::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)1, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#60 0x562f59 in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(std::integer_sequence<unsigned long, 0ul, 1ul, 2ul, 3ul, 4ul, 5ul, 6ul>, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:45:19
#61 0x562c59 in bool tao::pegtl::internal::sor<tao::pegtl::json::string, tao::pegtl::json::number, tao::pegtl::json::object, tao::pegtl::json::array, tao::pegtl::json::false, tao::pegtl::json::true, tao::pegtl::json::null>::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/sor.hpp:58:17
#62 0x562b69 in decltype(tao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#63 0x562a79 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#64 0x562639 in auto tao::pegtl::match<tao::pegtl::json::value, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:137:24
#65 0x5622e9 in bool tao::pegtl::normaltao::pegtl::json::value::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/normal.hpp:80:20
#66 0x5620e3 in bool tao::pegtl::internal::seq<tao::pegtl::json::value, tao::pegtl::internal::startao::pegtl::json::ws >::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/internal/seq.hpp:48:25
#67 0x561eb9 in decltype(tao::pegtl::json::array_element::match<(tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal>(fp, fp0...)) tao::pegtl::internal::match_no_control<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:44:17
#68 0x561d89 in auto tao::pegtl::internal::match_control_unwind<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > > >(tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits, std::allocator > >&) /data/projects/PEGTL_git-3a4f88e88b0ff02c/libfuzzer/address/include/tao/pegtl/match.hpp:83:20
#69 0x561929 in auto tao::pegtl::match<tao::pegtl::json::array_element, (tao::pegtl::apply_mode)1, (tao::pegtl::rewind_mode)0, tao::pegtl::nothing, tao::pegtl::normal, tao::pegtl::memory_input<(tao::pegtl::tracking_mode)0, tao::pegtl::ascii::eol::lf_crlf, std::__cxx11::basic_string<char, std::char_traits
The text was updated successfully, but these errors were encountered: