Skip to content

rtspsrc: Fix segfault with illegal free

Ognyan Tonchev requested to merge redstar/gst-plugins-good:segfault_fix into master

set_get_param_q is not a pointer so it is illegal to call g_queue_free_full(). It is enough to clear the queue with g_queue_clear_full() to free all the allocated data.

Merge request reports