You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.
I get EXC_BAD_ACCESS in PACView.m at line pointed below. The block completion handler for requestConsentInfoUpdateForPublisherIdentifiers is working fine, just the form completion handler. Im curious if this has something to do with my project not being ARC.
Zombie setting didn't show it as collected memory, and printing it in the debugger also worked.
Any ideas?
I get EXC_BAD_ACCESS in PACView.m at line pointed below. The block completion handler for requestConsentInfoUpdateForPublisherIdentifiers is working fine, just the form completion handler. Im curious if this has something to do with my project not being ARC.
Zombie setting didn't show it as collected memory, and printing it in the debugger also worked.
Any ideas?
/// Handles load completion.
dispatch_async(dispatch_get_main_queue(), ^{
PAC_MUST_BE_MAIN_THREAD();
if (self->_loadCompletionHandler) {
self->_loadCompletionHandler(error); <======= ERROR
}
self->_loadCompletionHandler = nil;
});
}
The text was updated successfully, but these errors were encountered: