mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-09-04 10:05:49 -05:00
ff_clock_init expects a parameter with a pointer where it stores the address of the newly allocated ff_clock, but ff_demuxer_reset does not provide this parameter. That somehow writes the pointer to the ff_clock into the packet->base->buf field on the stack of the ff_demuxer_reset function. This later causes a segmentation fault when the packet is freed. Closes jp9000/obs-studio#448