pad-monitor: fix NULL format string
An empty message should be an empty string.
This commit is contained in:
parent
2eba57d387
commit
4456e24cdf
@ -1041,7 +1041,7 @@ gst_qa_pad_monitor_add_expected_newsegment (GstQaPadMonitor * monitor,
|
|||||||
GST_QA_MONITOR_LOCK (othermonitor);
|
GST_QA_MONITOR_LOCK (othermonitor);
|
||||||
if (othermonitor->expected_segment) {
|
if (othermonitor->expected_segment) {
|
||||||
GST_QA_REPORT (othermonitor,
|
GST_QA_REPORT (othermonitor,
|
||||||
GST_QA_ISSUE_ID_EVENT_NEWSEGMENT_NOT_PUSHED, NULL);
|
GST_QA_ISSUE_ID_EVENT_NEWSEGMENT_NOT_PUSHED, "");
|
||||||
gst_event_unref (othermonitor->expected_segment);
|
gst_event_unref (othermonitor->expected_segment);
|
||||||
}
|
}
|
||||||
othermonitor->expected_segment = gst_event_ref (event);
|
othermonitor->expected_segment = gst_event_ref (event);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user