]> git.saurik.com Git - cydia.git/commitdiff
Initialize/check Installed/Recent section with nil.
authorJay Freeman (saurik) <saurik@saurik.com>
Sun, 25 May 2014 12:15:16 +0000 (05:15 -0700)
committerJay Freeman (saurik) <saurik@saurik.com>
Sun, 25 May 2014 12:16:02 +0000 (05:16 -0700)
MobileCydia.mm

index a4d462ce874c03834edd5d3bb935b5b3807649ab..8740c5d48fac128e4feb1b07ab0c93161efeb032 100644 (file)
@@ -7987,9 +7987,7 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi
     CFDateFormatterRef formatter(CFDateFormatterCreate(NULL, Locale_, kCFDateFormatterLongStyle, kCFDateFormatterNoStyle));
 
     NSMutableArray *sections([NSMutableArray arrayWithCapacity:16]);
-
-    Section *section;
-
+    Section *section(nil);
     time_t last(0);
 
     for (size_t offset(0), count([packages count]); offset != count; ++offset) {
@@ -7998,7 +7996,7 @@ static void HomeControllerReachabilityCallback(SCNetworkReachabilityRef reachabi
         time_t updated([package updated]);
         updated -= updated % (60 * 60 * 24);
 
-        if (updated != last) {
+        if (section == nil || updated != last) {
             last = updated;
 
             NSString *name;