Revert "libs/lucid-http: copyz() causes a Kernel oops on brcm-2.4, revert to copy() for now (#70)"

Fixed in nixio
This commit is contained in:
Steven Barth 2009-06-10 23:29:10 +00:00
parent 690927bf6b
commit a75d304028

View file

@ -498,9 +498,7 @@ function Server.process(self, client, env)
if sourceout and stat then
if util.instanceof(sourceout, IOResource) then
-- 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)
stat, code, msg = sourceout.fd:copyz(client, sourceout.len)
else
stat, msg = ltn12.pump.all(sourceout, sinkout)
end