diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/my_pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h index 2b3f4f14ea3..72647b6c9f7 100644 --- a/include/my_pthread.h +++ b/include/my_pthread.h @@ -693,7 +693,7 @@ extern void my_mutex_end(void); We need to have at least 256K stack to handle calls to myisamchk_init() with the current number of keys and key parts. */ -#ifdef __SANITIZE_ADDRESS__ +#if defined(__SANITIZE_ADDRESS__) || defined(WITH_UBSAN) #define DEFAULT_THREAD_STACK (364*1024L) #else #define DEFAULT_THREAD_STACK (292*1024L) |