From 405eb8a3aef2d69950da46cd904c879284987159 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 13 Sep 2008 03:40:53 +0000 Subject: [PATCH] Fixed stupid mutability bug. --- Cydia.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cydia.mm b/Cydia.mm index 1ad22345..2caecf00 100644 --- a/Cydia.mm +++ b/Cydia.mm @@ -2673,7 +2673,7 @@ bool DepSubstrate(const pkgCache::VerIterator &iterator) { #define Cache_ "/User/Library/Caches/com.apple.mobile.installation.plist" - if (NSMutableDictionary *cache = [[NSDictionary alloc] initWithContentsOfFile:@ Cache_]) { + if (NSMutableDictionary *cache = [[NSMutableDictionary alloc] initWithContentsOfFile:@ Cache_]) { [cache autorelease]; NSFileManager *manager = [NSFileManager defaultManager]; -- 2.45.2