summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2014-10-31 16:02:50 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2014-10-31 16:17:42 +0000
commit445ca7c40d970d9ed973e67040123c2e020fd294 (patch)
tree789d8df372c87049d782b637bad429463b15e651
parentad089983c1a18504b224a674f27b5f9ba3f4b49f (diff)
Do not attempt to fix the iOS 6 bug on iOS 7 or 8.v1.1.9
-rw-r--r--extrainst_.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/extrainst_.mm b/extrainst_.mm
index 9a6a679..a938b04 100644
--- a/extrainst_.mm
+++ b/extrainst_.mm
@@ -137,7 +137,7 @@ int main(int argc, const char *argv[]) {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
- if (kCFCoreFoundationVersionNumber >= 700) { // XXX: iOS 6.x
+ if (kCFCoreFoundationVersionNumber >= 700 && kCFCoreFoundationVersionNumber < 800) { // XXX: iOS 6.x
NSString *home(@"/var/mobile");
NSString *plist([NSString stringWithFormat:@"%@/Library/Caches/com.apple.mobile.installation.plist", home]);
NSDictionary *cache([NSDictionary dictionaryWithContentsOfFile:plist]);