diff options
Diffstat (limited to 'sysoptions.h')
-rw-r--r-- | sysoptions.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sysoptions.h b/sysoptions.h index 3f5c5e6..5bdb3e3 100644 --- a/sysoptions.h +++ b/sysoptions.h @@ -316,4 +316,17 @@ If you test it please contact the Dropbear author */ #define DROPBEAR_CLIENT_TCP_FAST_OPEN 0 #endif +#define DROPBEAR_TRACKING_MALLOC (DROPBEAR_FUZZ) + +/* Used to work around Memory Sanitizer false positives */ +#if defined(__has_feature) +# if __has_feature(memory_sanitizer) +# define DROPBEAR_MSAN 1 +# endif +#endif +#ifndef DROPBEAR_MSAN +#define DROPBEAR_MSAN 0 +#endif + + /* no include guard for this file */ |