1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
matz 2005-09-17 14:40:06 +00:00
parent f2107f2ec1
commit ffe2293998
5 changed files with 26 additions and 7 deletions

View file

@ -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