agent: Remove unnecessary NULL check
authorPhilip Withnall <philip@tecnocode.co.uk>
Sun, 3 May 2015 15:05:30 +0000 (16:05 +0100)
committerPhilip Withnall <philip@tecnocode.co.uk>
Sun, 3 May 2015 15:05:30 +0000 (16:05 +0100)
With the changes in commit 483bdcf8, @name is now guaranteed to be
non-NULL. Spotted by Coverity.

CID: #109878

agent/agent.c

index 259fdc9..e733c82 100644 (file)
@@ -5329,16 +5329,14 @@ nice_agent_set_stream_name (NiceAgent *agent, guint stream_id,
 
   agent_lock();
 
-  if (name != NULL) {
-    for (i = agent->streams; i; i = i->next) {
-      Stream *stream = i->data;
+  for (i = agent->streams; i; i = i->next) {
+    Stream *stream = i->data;
 
-      if (stream->id != stream_id &&
-          g_strcmp0 (stream->name, name) == 0)
-        goto done;
-      else if (stream->id == stream_id)
-        stream_to_name = stream;
-    }
+    if (stream->id != stream_id &&
+        g_strcmp0 (stream->name, name) == 0)
+      goto done;
+    else if (stream->id == stream_id)
+      stream_to_name = stream;
   }
 
   if (stream_to_name == NULL)