hls: bring NULL test before dereference
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Tue, 8 Apr 2014 15:46:56 +0000 (16:46 +0100)
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Tue, 8 Apr 2014 15:46:56 +0000 (16:46 +0100)
Coverity 1195168

ext/hls/m3u8.c

index 851104b..e1b3733 100644 (file)
@@ -808,11 +808,11 @@ gst_m3u8_client_get_duration (GstM3U8Client * client)
 
   GST_M3U8_CLIENT_LOCK (client);
   /* We can only get the duration for on-demand streams */
-  if (!client->current->endlist) {
+  if (!client->current || client->current->endlist) {
     GST_M3U8_CLIENT_UNLOCK (client);
     return GST_CLOCK_TIME_NONE;
   }
-  if (client->current && client->current->files)
+  if (client->current->files)
     g_list_foreach (client->current->files, (GFunc) _sum_duration, &duration);
   GST_M3U8_CLIENT_UNLOCK (client);
   return duration;