about summary refs log tree commit homepage
path: root/lib/unicorn/cgi_wrapper.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-09-27 20:48:20 -0700
committerEric Wong <normalperson@yhbt.net>2009-09-27 20:48:20 -0700
commit79c270990ec3a657c23510ee4f2f7f2b4c2c748f (patch)
treee760846dc5446b4a903cd7c7c8c6756fac8f6b54 /lib/unicorn/cgi_wrapper.rb
parent3b0fcbf8baafbb88b2f15631b949fde9c8acff3b (diff)
downloadunicorn-79c270990ec3a657c23510ee4f2f7f2b4c2c748f.tar.gz
We've started using magic comments to ensure any strings we
create are binary instead.  Additionally, ensure we create any
StringIO objects with an explicit string (which default to
binary) to ensure the StringIO object is binary.  This is
because StringIO.new (with no arguments) will always use the
process-wide default encoding since it does not know about
magic comments (and couldn't, really...)
Diffstat (limited to 'lib/unicorn/cgi_wrapper.rb')
-rw-r--r--lib/unicorn/cgi_wrapper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/unicorn/cgi_wrapper.rb b/lib/unicorn/cgi_wrapper.rb
index 64848b4..729efee 100644
--- a/lib/unicorn/cgi_wrapper.rb
+++ b/lib/unicorn/cgi_wrapper.rb
@@ -59,7 +59,7 @@ class Unicorn::CGIWrapper < ::CGI
     @status = nil
     @head = {}
     @headv = Hash.new { |hash,key| hash[key] = [] }
-    @body = StringIO.new
+    @body = StringIO.new("")
     super(*args)
   end