aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lua/lua_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lua/lua_util.c b/src/lua/lua_util.c
index d89cfd28d..04413f2f6 100644
--- a/src/lua/lua_util.c
+++ b/src/lua/lua_util.c
@@ -2392,7 +2392,7 @@ lua_util_zlib_inflate (lua_State *L, int windowBits)
/* Here are dragons to distinguish between raw deflate and zlib */
if (windowBits == MAX_WBITS && t->len > 0) {
- if ((int)(unsigned char)t->start[0] != 0x78) {
+ if ((int)(unsigned char)((t->start[0] << 4)) != 0x80) {
/* Assume raw deflate */
windowBits = -windowBits;
}