summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-19 10:25:23 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-19 10:25:23 +0000
commit860bdc3b61dbcacecd4a2fb2c40cf222e91b8fd5 (patch)
tree280c20d9eec8f2500428b71e7beeeff064ad5314 /lib
parentdd09dfe3f0bc975db4b84a0e563bcdf862a7063b (diff)
* io.c (read_all): block string buffer modification during
rb_io_fread() by freezing it temporarily. [ruby-dev:24479] * dir.c (rb_push_glob): block call at once the end of method. [ruby-dev:24487] * ext/enumerator/enumerator.c (enum_each_slice): remove rb_gc_force_recycle() to prevent potential SEGV. [ruby-dev:24499] * ext/zlib/zlib.c (zstream_expand_buffer): hide internal string buffer by clearing klass. [ruby-dev:24510] * ext/socket/socket.c (sock_s_getservbyaname): protocol string might be altered. [ruby-dev:24503] * string.c (rb_str_upto): check if return value from succ is a string. [ruby-dev:24504] * io.c (rb_io_popen): get mode string via rb_io_flags_mode() to avoid mode string modification. [ruby-dev:24454] * io.c (rb_io_getline_fast): should take delim as unsigned char to distinguish EOF and '\377'. [ruby-dev:24460] * io.c (rb_io_getline): add check for RS modification. [ruby-dev:24461] * enum.c (enum_sort_by): use qsort() directly instead using rb_iterate(). [ruby-dev:24462] * enum.c (enum_each_with_index): remove rb_gc_force_recycle() to prevent access to recycled object (via continuation for example). [ruby-dev:24463] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7071 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi/session/pstore.rb6
-rw-r--r--lib/delegate.rb9
-rw-r--r--lib/tempfile.rb10
-rw-r--r--lib/xsd/charset.rb2
4 files changed, 19 insertions, 8 deletions
diff --git a/lib/cgi/session/pstore.rb b/lib/cgi/session/pstore.rb
index 033acc3249..10f3e8f75f 100644
--- a/lib/cgi/session/pstore.rb
+++ b/lib/cgi/session/pstore.rb
@@ -76,11 +76,7 @@ class CGI
def restore
unless @hash
@p.transaction do
- begin
- @hash = @p['hash']
- rescue
- @hash = {}
- end
+ @hash = @p['hash'] || {}
end
end
@hash
diff --git a/lib/delegate.rb b/lib/delegate.rb
index a14d62cf5b..ee574cb02b 100644
--- a/lib/delegate.rb
+++ b/lib/delegate.rb
@@ -75,6 +75,11 @@ class SimpleDelegator<Delegator
def __setobj__(obj)
@_sd_obj = obj
end
+
+ def initialize_copy(obj)
+ super
+ __setobj__(obj.__getobj__.clone)
+ end
end
# backward compatibility ^_^;;;
@@ -103,6 +108,10 @@ def DelegateClass(superclass)
def __setobj__(obj)
@_dc_obj = obj
end
+ def initialize_copy(obj)
+ super
+ __setobj__(obj.__getobj__.clone)
+ end
}
for method in methods
begin
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index b13e5ff61f..cea229132a 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -111,8 +111,14 @@ class Tempfile < DelegateClass(File)
# file.
def unlink
# keep this order for thread safeness
- File.unlink(@tmpname) if File.exist?(@tmpname)
- @@cleanlist.delete(@tmpname) if @@cleanlist
+ begin
+ File.unlink(@tmpname) if File.exist?(@tmpname)
+ @@cleanlist.delete(@tmpname)
+ @data = @tmpname = nil
+ ObjectSpace.undefine_finalizer(self)
+ rescue Errno::EACCESS
+ # may not be able to unlink on Windows; just ignore
+ end
end
alias delete unlink
diff --git a/lib/xsd/charset.rb b/lib/xsd/charset.rb
index 362f13edfc..e0241fdebc 100644
--- a/lib/xsd/charset.rb
+++ b/lib/xsd/charset.rb
@@ -103,7 +103,7 @@ public
end
def Charset.charset_str(label)
- CharsetMap.index(label.downcase)
+ CharsetMap.key(label.downcase)
end
# us_ascii = '[\x00-\x7F]'