We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64b15ff commit d44fabfCopy full SHA for d44fabf
Crashlytics/Crashlytics/Controllers/FIRCLSRolloutsPersistenceManager.m
@@ -59,13 +59,15 @@ - (void)updateRolloutsStateToPersistenceWithRollouts:(NSData *_Nonnull)rollouts
59
if (![_fileManager createFileAtPath:rolloutsPath contents:nil attributes:nil]) {
60
FIRCLSDebugLog(@"Could not create rollouts.clsrecord file. Error was code: %d - message: %s",
61
errno, strerror(errno));
62
+ return;
63
}
64
65
66
NSFileHandle *rolloutsFile = [NSFileHandle fileHandleForUpdatingAtPath:rolloutsPath];
67
68
if (!_rolloutsLoggingQueue) {
69
FIRCLSDebugLog(@"Rollouts logging queue is dealloccated");
70
71
72
73
dispatch_async(_rolloutsLoggingQueue, ^{
0 commit comments