skip address read oob in lz4 for now

This commit is contained in:
Philippe Teuwen 2020-10-06 17:31:31 +02:00 committed by iceman1001
commit 02d861d304
2 changed files with 7 additions and 0 deletions

View file

@ -42,6 +42,11 @@ extern "C" {
/* --- Dependency --- */
#include <stddef.h> /* size_t */
#if defined(__clang__) || defined (__GNUC__)
# define ATTRIBUTE_NO_SANITIZE_ADDRESS __attribute__((no_sanitize_address))
#else
# define ATTRIBUTE_NO_SANITIZE_ADDRESS
#endif
/**
Introduction