From b154c9488ec0e660ac4ebe7e14bede39f064d731 Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 27 Oct 2004 02:46:54 +0000 Subject: * string.c (RESIZE_CAPA): check string attribute before modifying capacity member of string structure. [ruby-dev:24594] * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain performance. [ruby-talk:117701] * sprintf.c (rb_f_sprintf): raise ArgumentError for extra arguments, unless (digit)$ style used. * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain performance. [ruby-talk:117701] * sprintf.c (rb_f_sprintf): raise ArgumentError for extra arguments, unless (digit)$ style used. * eval.c (frame_free): Guy Decoux solved the leak problem. Thanks. [ruby-core:03549] * ext/zlib/zlib.c (zstream_append_input): clear klass for z->input to avoid potential vulnerability. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7119 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 22b7823d4..86f542283 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,31 @@ Tue Oct 26 23:30:39 2004 Dave Thomas * lib/rdoc/code_objects.rb (RDoc::Context::add_class_or_module): Restore correct :nopdoc: behavior with nested classes and modules. +Tue Oct 26 18:21:29 2004 Yukihiro Matsumoto + + * string.c (RESIZE_CAPA): check string attribute before modifying + capacity member of string structure. [ruby-dev:24594] + +Tue Oct 26 11:33:26 2004 David G. Andersen + + * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain + performance. [ruby-talk:117701] + +Tue Oct 26 10:56:55 2004 Yukihiro Matsumoto + + * sprintf.c (rb_f_sprintf): raise ArgumentError for extra + arguments, unless (digit)$ style used. + +Tue Oct 26 11:33:26 2004 David G. Andersen + + * ext/zlib/zlib.c (gzreader_gets): use memchr() to to gain + performance. [ruby-talk:117701] + +Tue Oct 26 10:56:55 2004 Yukihiro Matsumoto + + * sprintf.c (rb_f_sprintf): raise ArgumentError for extra + arguments, unless (digit)$ style used. + Mon Oct 25 18:35:39 2004 WATANABE Hirofumi * win32/win32.c (isUNCRoot): should check NUL after '.'. @@ -28,8 +53,16 @@ Sun Oct 24 00:41:09 2004 Nobuyoshi Nakada * eval.c (rb_load, search_required, rb_require_safe, rb_require): use frozen shared string to avoid outside modification. [ruby-dev:24580] +Sat Oct 23 22:18:32 2004 Guy Decoux + + * eval.c (frame_free): Guy Decoux solved the leak problem. + Thanks. [ruby-core:03549] + Sat Oct 23 00:20:55 2004 Yukihiro Matsumoto + * ext/zlib/zlib.c (zstream_append_input): clear klass for z->input + to avoid potential vulnerability. + * ext/zlib/zlib.c (zstream_run): always use zstream_append_input() to avoid SEGV. [ruby-dev:24568] -- cgit