File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,6 @@ + (NSInteger)integerValueFromFirefoxPrefs:(NSString*)prefs
82
82
[scanner scanUpToCharactersFromSet: delimiters
83
83
intoString: NULL ] ;
84
84
if ([scanner isAtEnd ]) {
85
- ok = NO ;
86
85
break ;
87
86
}
88
87
[scanner scanCharactersFromSet: delimiters
@@ -166,6 +165,10 @@ + (NSInteger)integerValueFromFirefoxPrefs:(NSString*)prefs
166
165
}
167
166
}
168
167
}
168
+
169
+ #if !__has_feature(objc_arc)
170
+ [scanner release ] ;
171
+ #endif
169
172
170
173
return answer ;
171
174
}
Original file line number Diff line number Diff line change 20
20
name, and resolving the profile folder path indicated by this entry.
21
21
22
22
This method performs the inverse of -profileNameForPath:error_p:.
23
+
24
+ @param homePath If nil, defaults to the current user's home path
23
25
*/
24
26
+ (NSString *)pathForProfileName : (NSString *)profileName
25
27
homePath : (NSString *)homePath
You can’t perform that action at this time.
0 commit comments