Fix -Wconversion compiler warnings in the brotli decoder.
This commit is contained in:
@@ -27,7 +27,7 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/* This is the maximum memory amount that we will ever try to allocate. */
|
||||
#define BROTLI_MAX_ALLOCABLE_MEMORY (1ULL << 40)
|
||||
#define BROTLI_MAX_ALLOCABLE_MEMORY (1 << 30)
|
||||
|
||||
/* size-checking safe malloc/calloc: verify that the requested size is not too
|
||||
large, or return NULL. You don't need to call these for constructs like
|
||||
|
||||
Reference in New Issue
Block a user