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
After running my app through the AddressSanitizer I got a heap buffer overflow error.
The lines causing that are in UIColor+KVNContrast.h extension in - (UIStatusBarStyle)statusBarStyleConstrastStyle.
After running my app through the AddressSanitizer I got a heap buffer overflow error.
The lines causing that are in
UIColor+KVNContrast.h
extension in- (UIStatusBarStyle)statusBarStyleConstrastStyle
.CGColorGetComponents
is not guaranteed to return 3 components in all cases.To fix that, please replace the lines above with the following:
The text was updated successfully, but these errors were encountered: