mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-28 08:39:20 +00:00
Update linphone submodule and remove memory leak in InCall view
This commit is contained in:
parent
e0b789f704
commit
a1b2f96db3
2 changed files with 3 additions and 3 deletions
|
|
@ -260,7 +260,7 @@ enum TableSection {
|
|||
|
||||
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
|
||||
if(section == CallSection) {
|
||||
return [[UIView alloc] initWithFrame:CGRectZero];
|
||||
return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
|
||||
} else if(section == ConferenceSection) {
|
||||
LinphoneCore* lc = [LinphoneManager getLc];
|
||||
if(linphone_core_get_conference_size(lc) > 0){
|
||||
|
|
@ -270,7 +270,7 @@ enum TableSection {
|
|||
[headerController release];
|
||||
return headerView;
|
||||
} else {
|
||||
return [[UIView alloc] initWithFrame:CGRectZero];
|
||||
return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
|
||||
}
|
||||
}
|
||||
return [[[UIView alloc] initWithFrame:CGRectZero] autorelease];
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit a0be0c1b3b977f2ebc1e7712c648ae9748788458
|
||||
Subproject commit 1438d4f5911aa692b862b04e421eb48de3147b00
|
||||
Loading…
Add table
Reference in a new issue