summaryrefslogtreecommitdiff
path: root/lang/ruby16/patches/patch-aj
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby16/patches/patch-aj')
-rw-r--r--lang/ruby16/patches/patch-aj20
1 files changed, 0 insertions, 20 deletions
diff --git a/lang/ruby16/patches/patch-aj b/lang/ruby16/patches/patch-aj
deleted file mode 100644
index 78b4d3d8073..00000000000
--- a/lang/ruby16/patches/patch-aj
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aj,v 1.1.1.1 2004/11/27 14:14:05 taca Exp $
-
---- lib/cgi.rb.orig 2002-08-29 18:05:06.000000000 +0900
-+++ lib/cgi.rb
-@@ -823,10 +823,13 @@ convert string charset, and set language
- end
-
- c = if bufsize < content_length
-- stdinput.read(bufsize) or ''
-+ stdinput.read(bufsize)
- else
-- stdinput.read(content_length) or ''
-+ stdinput.read(content_length)
- end
-+ if c.nil?
-+ raise EOFError, "bad content body"
-+ end
- buf += c
- content_length -= c.size
-