summaryrefslogtreecommitdiff
path: root/MobileCydia.mm
diff options
context:
space:
mode:
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r--MobileCydia.mm6
1 files changed, 5 insertions, 1 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm
index d02aa5e..471299c 100644
--- a/MobileCydia.mm
+++ b/MobileCydia.mm
@@ -10230,7 +10230,11 @@ int main(int argc, char *argv[]) {
CFStringRef mnc($CTSIMSupportCopyMobileSubscriberNetworkCode == NULL ? NULL : (*$CTSIMSupportCopyMobileSubscriberNetworkCode)(kCFAllocatorDefault));
if (mcc != NULL && mnc != NULL)
- PLMN_ = [NSString stringWithFormat:@"%@%@", mcc, mnc];
+ if (CFStringGetLength(mcc) == 3) {
+ CFIndex length(CFStringGetLength(mnc));
+ if (length == 2 || length == 3)
+ PLMN_ = [NSString stringWithFormat:@"%@%@", mcc, mnc];
+ }
if (mnc != NULL)
CFRelease(mnc);