mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-15 00:22:35 +00:00
FS-5819: don't assigne variable to itself
This commit is contained in:
parent
c9444f6ff1
commit
1aa8464114
@ -3322,7 +3322,8 @@ tport_t *tport_tsend(tport_t *self,
|
|||||||
self = primary->pri_primary;
|
self = primary->pri_primary;
|
||||||
}
|
}
|
||||||
else if (tport_is_secondary(self) && tport_is_clear_to_send(self)) {
|
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,
|
* Try to find an already open connection to the destination,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user