23 Feb
2026
23 Feb
'26
9:10 p.m.
Nikolay Sivov (@nsivov) commented about dlls/mf/clock.c:
LIST_FOR_EACH_ENTRY(sink, &clock->sinks, struct clock_sink, entry) { - clock_notify_async_sink(clock, system_time, param, notification, sink->state_sink); + /* we don't need to notify a sink that is also the time source */ + if (clock->time_source_sink != sink->state_sink) + clock_notify_async_sink(clock, system_time, param, notification, sink->state_sink); }
This should read "Don't notify...", otherwise it sounds optional. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10095#note_130246