forked from mirrors/linphone-iphone
Fix crash which happened sometime on remove of proxy config
This commit is contained in:
parent
d08be6e6c7
commit
c0b32a738f
1 changed files with 3 additions and 1 deletions
|
|
@ -278,7 +278,9 @@ class LinphoneCoreImpl implements LinphoneCore {
|
|||
}
|
||||
public synchronized void removeProxyConfig(LinphoneProxyConfig proxyCfg) {
|
||||
isValid();
|
||||
removeProxyConfig(nativePtr, ((LinphoneProxyConfigImpl) proxyCfg).nativePtr);
|
||||
if (proxyCfg != null) {
|
||||
removeProxyConfig(nativePtr, ((LinphoneProxyConfigImpl) proxyCfg).nativePtr);
|
||||
}
|
||||
}
|
||||
public synchronized void clearAuthInfos() {
|
||||
isValid();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue