Madison Solarana
Madison Solarana
Here is the diff (for anyone who's curious): ``` diff --git a/Reachability.h b/Reachability.h index e04b7e7..5cbddc4 100644 --- a/Reachability.h +++ b/Reachability.h @@ -1,48 +1,9 @@ /* - File: Reachability.h - Abstract:...
It’s the same, we are unable to complete login.
@tobiashm It has been many months and a release has not been made available to correct this. If possible, could #128 be merged and released?
I'm encountering the same issue. The test is as follows: ```objective-c MyController *controller = [[MyController alloc] init]; OCMockObject *mockNotificationCenter = [OCMockObject partialMockForObject:NSNotificationCenter.defaultCenter]; [[mockNotificationCenter expect] postNotificationName:MyControllerViewDidLoadNotification object:controller]; [controller viewDidLoad]; [mockNotificationCenter verify];...
Turning on [Guard Malloc](https://developer.apple.com/library/archive/documentation/Performance/Conceptual/ManagingMemory/Articles/MallocDebug.html) also found some issues. In the `OCMockObjectClassMethodMockingTests`, the `testStopMockingDisposesMetaClass` and `testSecondClassMockDisposesFirstMetaClass` throw memory access errors after the stopMocking calls since the backing const char* storage for...
Unfortunately, I think I've hit my debugging with LLDB knowledge limit as I can't figure out what object the retain is crashing on: ``` (lldb) down frame #0: 0x00000001042c5fa7 libobjc.A.dylib`objc_retain...
@carllindberg Sorry for summoning you out of the blue, but you are one of the few people that I know that might be able to help me figure this out.
The issue identified by guard malloc was resolved in 662bbeb0fa408d3d6eaeba7b9721caef8be4de9e. The issue identified by UBSan was partially addressed by d00d8f37a97e415c65617edf8521568dc41cb263. Since `class_addMethod` still uses the originalIMP, it must not be...