From aa6fbbfae78bd6a08ef8e64ce0b69f2a365249fe Mon Sep 17 00:00:00 2001 From: lisyarus Date: Thu, 6 Feb 2014 01:34:18 +0400 Subject: [PATCH] Fix build in case zlib not found --- port/port_posix.h | 1 - 1 file changed, 1 deletion(-) diff --git a/port/port_posix.h b/port/port_posix.h index 15ab0dc5b..8ff2480a3 100644 --- a/port/port_posix.h +++ b/port/port_posix.h @@ -396,7 +396,6 @@ inline char* BZip2_Uncompress(const char* input_data, size_t input_length, _stream.next_out = (char *)(output + old_sz); _stream.avail_out = output_len - old_sz; break; - case Z_BUF_ERROR: default: delete[] output; BZ2_bzDecompressEnd(&_stream);