Mercurial > dropbear
comparison sysoptions.h @ 1596:60fceff95858
workaround memory sanitizer FD_ZERO false positives
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 06 Mar 2018 21:51:51 +0800 |
parents | c42e8ff42bd1 |
children | 1fbe598a14fb |
comparison
equal
deleted
inserted
replaced
1595:4fe7cc9e45eb | 1596:60fceff95858 |
---|---|
316 #define DROPBEAR_CLIENT_TCP_FAST_OPEN 0 | 316 #define DROPBEAR_CLIENT_TCP_FAST_OPEN 0 |
317 #endif | 317 #endif |
318 | 318 |
319 #define DROPBEAR_TRACKING_MALLOC (DROPBEAR_FUZZ) | 319 #define DROPBEAR_TRACKING_MALLOC (DROPBEAR_FUZZ) |
320 | 320 |
321 /* Used to work around Memory Sanitizer false positives */ | |
322 #if defined(__has_feature) | |
323 # if __has_feature(memory_sanitizer) | |
324 # define DROPBEAR_MSAN 1 | |
325 # endif | |
326 #endif | |
327 #ifndef DROPBEAR_MSAN | |
328 #define DROPBEAR_MSAN 0 | |
329 #endif | |
330 | |
331 | |
321 /* no include guard for this file */ | 332 /* no include guard for this file */ |