Skip to content

Commit d710ec0

Browse files
committed
format
1 parent eb4cb92 commit d710ec0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Support/Compression.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,9 @@ Error zstd::decompress(ArrayRef<uint8_t> Input, uint8_t *Output,
206206
const size_t Res = ::ZSTD_decompress(
207207
Output, UncompressedSize, (const uint8_t *)Input.data(), Input.size());
208208
UncompressedSize = Res;
209-
if (ZSTD_isError(Res)) {
209+
if (ZSTD_isError(Res))
210210
return make_error<StringError>(ZSTD_getErrorName(Res),
211211
inconvertibleErrorCode());
212-
}
213212
// Tell MemorySanitizer that zstd output buffer is fully initialized.
214213
// This avoids a false report when running LLVM with uninstrumented ZLib.
215214
__msan_unpoison(Output, UncompressedSize);

0 commit comments

Comments
 (0)