This repository was archived by the owner on Dec 1, 2019. It is now read-only.

Description
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.