DeploydKit
DeploydKit copied to clipboard
Bug in saveInBackgroundWithBlock:
In DKFile.m, line 232, you have this method:
- (void)saveInBackgroundWithBlock:(void (^)(BOOL success, NSError *error))block { [self saveSynchronous:NO resultBlock:block error:NULL]; }
The NULL passed for the error: parameter results in a crash in the saveSynchronous:resultBlock:error method at line 218, where you are dereferencing the error pointer value.