Bug 1553759 - Remove unused LZ4::decompress method r=froydnj

The implementation of this method calls deprecated functions and
generates compiler warnings. It is never used, so just remove it.

Differential Revision: https://phabricator.services.mozilla.com/D51093

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Ted Campbell 2019-10-30 14:55:52 +00:00
Родитель abb32d1aeb
Коммит 2adca90e13
2 изменённых файлов: 0 добавлений и 23 удалений

Просмотреть файл

@ -37,13 +37,6 @@ size_t LZ4::compressLimitedOutput(const char* aSource, size_t aInputSize,
maxOutputSizeChecked.value());
}
bool LZ4::decompress(const char* aSource, char* aDest, size_t aOutputSize) {
CheckedInt<int> outputSizeChecked = aOutputSize;
MOZ_ASSERT(outputSizeChecked.isValid());
int ret = LZ4_decompress_fast(aSource, aDest, outputSizeChecked.value());
return ret >= 0;
}
bool LZ4::decompress(const char* aSource, size_t aInputSize, char* aDest,
size_t aMaxOutputSize, size_t* aOutputSize) {
CheckedInt<int> maxOutputSizeChecked = aMaxOutputSize;

Просмотреть файл

@ -64,22 +64,6 @@ class LZ4 {
size_t aInputSize, char* aDest,
size_t aMaxOutputSize);
/**
* If the source stream is malformed, the function will stop decoding
* and return false.
*
* This function never writes outside of provided buffers, and never
* modifies input buffer.
*
* Note: destination buffer must be already allocated, and its size must be a
* minimum of |aOutputSize| bytes.
*
* @param aOutputSize is the output size, therefore the original size
* @return true on success, false on failure
*/
static MFBT_API MOZ_MUST_USE bool decompress(const char* aSource, char* aDest,
size_t aOutputSize);
/**
* If the source stream is malformed, the function will stop decoding
* and return false.