Skip to content

info: Fix deadlock in gst_ring_buffer_logger_log

Doug Nazar requested to merge dougnazar/gstreamer:fix_ring_logger into master

gst_ring_buffer_logger_log calls several functions while formatting the message which may in turn log a message while we already hold the mutex. Do all formatting first before acquiring the mutex to avoid this and reduce the time we hold the mutex.

Merge request reports