https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=283807
Mark Millard <marklmi26-f...@yahoo.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marklmi26-f...@yahoo.com --- Comment #1 from Mark Millard <marklmi26-f...@yahoo.com> --- More context from Discord's FreeBSD kernel Channel: JordanG: Okay, the code is buggy. umtx_pi_alloc(M_NOWAIT) is called. The flag M_NOWAITmeans that NULL is returned if the memory allocation request cannot be satisfied immediately. The call to the memory allocation routine uma_zalloc fails and returns NULL. umtx_pi_alloc() receives the NULL pointer and immediately, without checking it, tries to access a structure's field via the pointer. And also: JordanG: @maxfx You've discovered a genuine bug that is also present in FreeBSD 15-CURRENT. -- You are receiving this mail because: You are the assignee for the bug.