about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-15 00:15:42 +0000
committerEric Wong <normalperson@yhbt.net>2011-06-15 00:15:42 +0000
commitd91ca210615432bdad3ee70c08908ea7064c6b95 (patch)
tree8a848892204ffdaa9bf61162c39c72eafa3cc9c6
parentc719497c6db220a9f58c71970f2370cb2e6c99c3 (diff)
downloadunicorn-d91ca210615432bdad3ee70c08908ea7064c6b95.tar.gz
Needless line noise, kgio doesn't support tainting anyways.
-rw-r--r--ext/unicorn_http/unicorn_http.rl1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/unicorn_http/unicorn_http.rl b/ext/unicorn_http/unicorn_http.rl
index 98bcd05..6a7100e 100644
--- a/ext/unicorn_http/unicorn_http.rl
+++ b/ext/unicorn_http/unicorn_http.rl
@@ -908,7 +908,6 @@ static VALUE HttpParser_filter_body(VALUE self, VALUE dst, VALUE src)
   StringValue(dst);
   rb_str_modify(dst);
   rb_str_resize(dst, srclen); /* we can never copy more than srclen bytes */
-  OBJ_TAINT(dst); /* keep weirdo $SAFE users happy */
 
   if (HP_FL_TEST(hp, CHUNKED)) {
     if (!chunked_eof(hp)) {