summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-20 19:57:56 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-07-20 19:57:56 +0000
commit45d03ec20af23e0569c89f34c7f11b3839edc84b (patch)
treea78ba40835820f65c4a1489fed997f20363fcbd7 /ChangeLog
parent3c77d94be5b24a4d8946b672b838d797ff5fe192 (diff)
downloadruby-45d03ec20af23e0569c89f34c7f11b3839edc84b.tar.gz
ruby-45d03ec20af23e0569c89f34c7f11b3839edc84b.tar.xz
ruby-45d03ec20af23e0569c89f34c7f11b3839edc84b.zip
* dir.c (dir_initialize): use rb_convert_type instead of
rb_check_convert_type to prevent SEGV by Dir.new(".", true). (dir_initialize): use FilePathValue before rb_enc_get(dirname) to prevent SEGV by Dir.new(0). git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index a9f927239..3918ad5b4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Jul 21 04:55:20 2008 Tanaka Akira <akr@fsij.org>
+
+ * dir.c (dir_initialize): use rb_convert_type instead of
+ rb_check_convert_type to prevent SEGV by Dir.new(".", true).
+ (dir_initialize): use FilePathValue before rb_enc_get(dirname) to
+ prevent SEGV by Dir.new(0).
+
Mon Jul 21 04:42:15 2008 Tanaka Akira <akr@fsij.org>
* re.c (rb_reg_s_union): useless rb_enc_get call removed to prevent