]> 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:29:04 +0000 (13:29 -0400)
libs/sofia-sip/libsofia-sip-ua/tport/tport.c

index eb79deba503b6a6f7b3a673ce1a6777c8e09cd7e..228f7f8d834e5b8c07135196d145f37fb0b535b1 100644 (file)
@@ -3303,7 +3303,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,