[Bug 1222064] Spectacle segfaults when screen recording on Wayland (pipewire)
https://bugzilla.suse.com/show_bug.cgi?id=1222064 https://bugzilla.suse.com/show_bug.cgi?id=1222064#c8 --- Comment #8 from Ferdinand Thiessen <rpm@fthiessen.de> --- It seems this is a regression of this commit: https://invent.kde.org/plasma/kpipewire/-/commit/09124fb076346d0134c631966cd... This: ``` if (!m_encoder) { // Clear the queue of encoded packets. m_encoder->receivePacket(); } ``` causes a null pointer de-reference and should be fixed to: ``` if (m_encoder) { // Clear the queue of encoded packets. m_encoder->receivePacket(); } ``` The segfault is then gone. There also seems to be an upstream bug report: https://bugs.kde.org/show_bug.cgi?id=484620 -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@suse.com