skip address read oob in lz4 for now

This commit is contained in:
Philippe Teuwen
2020-10-06 17:31:31 +02:00
parent 92a768ce0e
commit fdac4da302
3 changed files with 7 additions and 6 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