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
strtok() is used in handlerequest() but it's not thread-safe. It uses a
static buffer in the library to hold the pointer for the next token. You
should use strtok_r().
The text was updated successfully, but these errors were encountered:
strtok() is used in handlerequest() but it's not thread-safe. It uses a
static buffer in the library to hold the pointer for the next token. You
should use strtok_r().
The text was updated successfully, but these errors were encountered: