From ffe229399843b3ddb86511c0627e208e989efc49 Mon Sep 17 00:00:00 2001 From: matz Date: Sat, 17 Sep 2005 14:40:06 +0000 Subject: * test/socket/test_tcp.rb (TestTCPSocket::test_recvfrom): typo fixed. [ruby-dev:27123] * string.c (rb_str_substr): should propagate taintness even for empty strings. [ruby-dev:27121] * string.c (rb_str_aref): should infect result if range argument is tainted. [ruby-dev:27121] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9199 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/socket/test_tcp.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/socket/test_tcp.rb b/test/socket/test_tcp.rb index 9e6623bdfc..362f9a7157 100644 --- a/test/socket/test_tcp.rb +++ b/test/socket/test_tcp.rb @@ -15,12 +15,12 @@ class TestTCPSocket < Test::Unit::TestCase ObjectSpace.each_object(String) {|s| s.replace "a" if s.length == 0x10000 and !s.frozen? } - c.print("x"*0x10000) + c.print("x"*0x1000) } addr = svr.addr sock = TCPSocket.open(addr[2], addr[1]) assert_raise(RuntimeError, SocketError) { - p sock.recvfrom(0x10000) + sock.recvfrom(0x10000) } ensure th.join -- cgit v1.2.3