We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f4fba4 commit f6b8a99Copy full SHA for f6b8a99
src/kms/kms_window.c
@@ -545,7 +545,11 @@ static void on_present_frame(void *userdata) {
545
if (ok != 0) {
546
LOG_ERROR("Could not commit frame request.\n");
547
frame_scheduler_unref(frame->scheduler);
548
- tracer_unref(frame->tracer);
+
549
+ // Analyzer thinks the tracer might already be destroyed by the tracer_unref
550
+ // above. We know that's not possible.
551
+ ANALYZER_SUPPRESS(tracer_unref(frame->tracer));
552
553
kms_req_unref(frame->req);
554
free(frame);
555
}
0 commit comments