mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 19:42:26 +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,8 +209,7 @@ 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");
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in a new issue