Minor fix for Windows build with zlib (#9699)

Summary:
```
conversion from 'size_t' to 'uLong', possible loss of data
```

Fix https://github.com/facebook/rocksdb/issues/9688

Pull Request resolved: https://github.com/facebook/rocksdb/pull/9699

Reviewed By: riversand963

Differential Revision: D34901116

Pulled By: jay-zhuang

fbshipit-source-id: 969148a7a8c023449bd85055a1f0eec71d0a9b3f
main
Jay Zhuang 2 years ago committed by Facebook GitHub Bot
parent 5894761056
commit 2586585b0c
  1. 3
      util/compression.h

@ -779,7 +779,8 @@ inline bool Zlib_Compress(const CompressionInfo& info,
}
// Get an upper bound on the compressed size.
size_t upper_bound = deflateBound(&_stream, length);
size_t upper_bound =
deflateBound(&_stream, static_cast<unsigned long>(length));
output->resize(output_header_len + upper_bound);
// Compress the input, and put compressed data in output.

Loading…
Cancel
Save