getsentry / sentry-cocoa

The official Sentry SDK for iOS, tvOS, macOS, watchOS.

Home Page:https://sentry.io/for/cocoa/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Replace `strerror` with `strerror_r`

armcknight opened this issue · comments

Description

strerror is not thread-safe. strerror_r is the replacement that guarantees thread safety. This could potentially be causing race conditions, and is used in ~40 places in the SDK so far.