summaryrefslogtreecommitdiff
path: root/lib/LuaHandle.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/LuaHandle.cc')
-rw-r--r--lib/LuaHandle.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/LuaHandle.cc b/lib/LuaHandle.cc
index 08f4911..ba66afc 100644
--- a/lib/LuaHandle.cc
+++ b/lib/LuaHandle.cc
@@ -809,15 +809,18 @@ int sLuaHandle::zlib_inflate(lua_State * __L) {
int n = L->gettop();
Handle * s, * d;
int r;
+ bool raw = false;
- if (n != 2) {
+ if ((n < 2) || (n > 3) || ((n == 3) && !L->isboolean(3))) {
L->error("Incorrect arguments to method `Handle::zlib_inflate'");
}
s = L->recast<Handle>(1);
d = L->recast<Handle>(2);
+ if (n >= 3)
+ raw = L->toboolean(3);
- r = Handle::zlib_inflate(s, d);
+ r = Handle::zlib_inflate(s, d, raw);
L->push((lua_Number) r);