From: Jay Freeman (saurik) Date: Mon, 14 Mar 2011 11:24:07 +0000 (-0700) Subject: SourcesController should be era locked. X-Git-Tag: v1.1.0%b7~7 X-Git-Url: https://git.saurik.com/cydia.git/commitdiff_plain/c33064f11c970d957b1d1f9afb00f91cda5dcacc SourcesController should be era locked. --- diff --git a/MobileCydia.mm b/MobileCydia.mm index 9dc06196..42053dde 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -8131,6 +8131,8 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { UITableViewDelegate > { _transient Database *database_; + unsigned era_; + _H list_; _H sources_; int offset_; @@ -8195,8 +8197,12 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { } - (Source *) sourceAtIndexPath:(NSIndexPath *)indexPath { +@synchronized (database_) { + if ([database_ era] != era_) + return nil; + return [sources_ objectAtIndex:[indexPath row]]; -} +} } - (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *cellIdentifier = @"SourceCell"; @@ -8467,6 +8473,9 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { - (void) reloadData { [super reloadData]; +@synchronized (database_) { + era_ = [database_ era]; + pkgSourceList list; if ([database_ popErrorWithTitle:UCLocalize("SOURCES") forOperation:list.ReadMainList()]) return; @@ -8488,7 +8497,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { [list_ setEditing:NO]; [self updateButtonsForEditingStatus:NO animated:NO]; [list_ reloadData]; -} +} } - (void) showAddSourcePrompt { UIAlertView *alert = [[[UIAlertView alloc]