thread_tools: suppress -Wstringop-overflow false-positive

This commit is contained in:
Kacper Michajłow 2023-10-14 16:31:35 +02:00 committed by Dudemanguy
parent 4e6325d012
commit 500eb3940d
1 changed files with 7 additions and 0 deletions

View File

@ -245,7 +245,14 @@ int mp_cancel_get_fd(struct mp_cancel *c)
{
pthread_mutex_lock(&c->lock);
if (c->wakeup_pipe[0] < 0) {
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wstringop-overflow="
#endif
mp_make_wakeup_pipe(c->wakeup_pipe);
#if defined(__GNUC__) && !defined(__clang__)
# pragma GCC diagnostic pop
#endif
retrigger_locked(c);
}
pthread_mutex_unlock(&c->lock);