mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-21 21:28:08 +00:00
fix table overflow
This commit is contained in:
parent
7c397eef3d
commit
8a336839b5
1 changed files with 1 additions and 1 deletions
|
|
@ -539,7 +539,7 @@ void IceAgent::createIceCheckListsAndParseIceAttributes (const SalMediaDescripti
|
|||
}
|
||||
if (!iceRestarted) {
|
||||
bool_t losingPairsAdded = false;
|
||||
for (int j = 0; j < SAL_MEDIA_DESCRIPTION_MAX_ICE_CANDIDATES; j++) {
|
||||
for (int j = 0; j < SAL_MEDIA_DESCRIPTION_MAX_ICE_REMOTE_CANDIDATES; j++) {
|
||||
const SalIceRemoteCandidate *remoteCandidate = &stream->ice_remote_candidates[j];
|
||||
const char *addr = nullptr;
|
||||
int port = 0;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue