DeploydKit icon indicating copy to clipboard operation
DeploydKit copied to clipboard

Bug in saveInBackgroundWithBlock:

Open dblapps opened this issue 12 years ago • 0 comments

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.

dblapps avatar Sep 26 '13 23:09 dblapps