Update linphone submodule and remove memory leak in InCall view

This commit is contained in:
Yann Diorcet 2012-08-23 10:09:25 +02:00
parent e0b789f704
commit a1b2f96db3
2 changed files with 3 additions and 3 deletions

View file

@ -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