libs/lucid-http: copyz() causes a Kernel oops on brcm-2.4, revert to copy() for now...
authorJo-Philipp Wich <jow@openwrt.org>
Wed, 10 Jun 2009 22:43:11 +0000 (22:43 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Wed, 10 Jun 2009 22:43:11 +0000 (22:43 +0000)
libs/lucid-http/luasrc/lucid/http/server.lua

index 95484a0..7cfd1b7 100644 (file)
@@ -498,7 +498,9 @@ function Server.process(self, client, env)
 
                if sourceout and stat then
                        if util.instanceof(sourceout, IOResource) then
-                               stat, code, msg = sourceout.fd:copyz(client, sourceout.len)
+                               -- Jow: copyz() oopses on brcm-2.4, use copy() for now
+                               --stat, code, msg = sourceout.fd:copyz(client, sourceout.len)
+                               stat, code, msg = sourceout.fd:copy(client, sourceout.len)
                        else
                                stat, msg = ltn12.pump.all(sourceout, sinkout)
                        end