diff --git a/src/pulsecore/thread.h b/src/pulsecore/thread.h index 4e5425d6e..4a2b1bb82 100644 --- a/src/pulsecore/thread.h +++ b/src/pulsecore/thread.h @@ -85,7 +85,7 @@ void *pa_tls_set(pa_tls *t, void *userdata); /* An optimized version of the above that requires no dynamic * allocation if the compiler supports __thread */ #define PA_STATIC_TLS_DECLARE_NO_FREE(name) \ - static __thread void *name##_tls; \ + static __thread void *name##_tls = NULL; \ static inline void* name##_tls_get(void) { \ return name##_tls; \ } \