projects
/
oweals
/
luci.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
690927b
)
Revert "libs/lucid-http: copyz() causes a Kernel oops on brcm-2.4, revert to copy...
author
Steven Barth
<steven@midlink.org>
Wed, 10 Jun 2009 23:29:10 +0000
(23:29 +0000)
committer
Steven Barth
<steven@midlink.org>
Wed, 10 Jun 2009 23:29:10 +0000
(23:29 +0000)
Fixed in nixio
libs/lucid-http/luasrc/lucid/http/server.lua
patch
|
blob
|
history
diff --git
a/libs/lucid-http/luasrc/lucid/http/server.lua
b/libs/lucid-http/luasrc/lucid/http/server.lua
index 7cfd1b70321087967ea9d13afa5ba8f9fb55072c..95484a02f0bdd49c834aecfef45a90f81c010c4c 100644
(file)
--- a/
libs/lucid-http/luasrc/lucid/http/server.lua
+++ b/
libs/lucid-http/luasrc/lucid/http/server.lua
@@
-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