]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-5819: don't assigne variable to itself
authorMichael Jerris <mike@jerris.com>
Mon, 30 Sep 2013 17:28:47 +0000 (13:28 -0400)
committerMichael Jerris <mike@jerris.com>
Mon, 30 Sep 2013 17:28:47 +0000 (13:28 -0400)
libs/sofia-sip/libsofia-sip-ua/tport/tport.c

index 50050e228938dff0856342a3d90d5a8ab58e1025..ccffb5e007d37360f6922a25c150f4b85e740423 100644 (file)
@@ -3322,7 +3322,8 @@ tport_t *tport_tsend(tport_t *self,
     self = primary->pri_primary;
   }
   else if (tport_is_secondary(self) && tport_is_clear_to_send(self)) {
-    self = self;
+       /* self = self; */
+       ;
   }
   /*
    * Try to find an already open connection to the destination,