mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-07 23:12:42 +00:00
nettimeprovider: remove unnecessary NULL check
Error is never NULL when we break out of the loop. COVERITY CID 1037151
This commit is contained in:
parent
0735c052e1
commit
2ddbe8df49
1 changed files with 1 additions and 2 deletions
|
@ -209,7 +209,6 @@ gst_net_time_provider_thread (gpointer data)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (err != NULL)
|
|
||||||
g_error_free (err);
|
g_error_free (err);
|
||||||
|
|
||||||
GST_INFO_OBJECT (self, "time provider thread is stopping");
|
GST_INFO_OBJECT (self, "time provider thread is stopping");
|
||||||
|
|
Loading…
Reference in a new issue