[Bug 1214003] Chromium crashed on page loading since last update (signal 11 SEGV_MAPERR __strlen_avx2)
https://bugzilla.suse.com/show_bug.cgi?id=1214003 https://bugzilla.suse.com/show_bug.cgi?id=1214003#c16 --- Comment #16 from Arnav Singh <opensuse@arnavion.dev> --- Yes, this simple program with abseil-cpp-devel-20230125.3-2.1 from TW repo has the same issue: $ cat foo.cpp #include <absl/strings/string_view.h> int main() { absl::string_view sv(nullptr); return 0; } $ g++ -o foo -g foo.cpp && gdb --args ./foo ... Program received signal SIGSEGV, Segmentation fault. __strlen_avx2 () at ../sysdeps/x86_64/multiarch/strlen-avx2.S:76 76 VPCMPEQ (%rdi), %ymm0, %ymm1 It's also because it's doing `strlen(NULL)` So this is either an abseil issue that `string_view(nullptr)` crashes, or chromium is wrong when it does `string_view(nullptr)` on this line: https://github.com/chromium/chromium/blob/115.0.5790.170/extensions/browser/... -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@suse.com