-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dir.c (rb_glob2): do not allocate buffer from heap to avoid
memory leaks. use string object for buffering instead. [ruby-dev:24738] * dir.c (join_path): ditto. * io.c (io_read): external input buffer may be modified even after rb_str_locktmp(). [ruby-dev:24735] * dir.c (fnmatch): p or s may be NULL. [ruby-dev:24749] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7242 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
matz
committed
Nov 10, 2004
1 parent
63b9174
commit 683400f
Showing
9 changed files
with
126 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,19 @@ Tue Nov 9 00:50:06 2004 Dave Thomas <[email protected]> | |
|
||
* lib/rdoc/rdoc.rb: Change version numbering of RDoc and ri | ||
|
||
Tue Nov 9 01:05:04 2004 Yukihiro Matsumoto <[email protected]> | ||
|
||
* dir.c (rb_glob2): do not allocate buffer from heap to avoid | ||
memory leaks. use string object for buffering instead. | ||
[ruby-dev:24738] | ||
|
||
* dir.c (join_path): ditto. | ||
|
||
* io.c (io_read): external input buffer may be modified even after | ||
rb_str_locktmp(). [ruby-dev:24735] | ||
|
||
* dir.c (fnmatch): p or s may be NULL. [ruby-dev:24749] | ||
|
||
Tue Nov 9 00:36:26 2004 Masatoshi SEKI <[email protected]> | ||
|
||
* lib/drb/extservm.rb: add DRb::ExtServManager#uri=. | ||
|
@@ -67,6 +80,11 @@ Sat Nov 6 11:18:59 2004 Tadayoshi Funaba <[email protected]> | |
|
||
* lib/date.rb (_parse): checks whether zone was given. | ||
|
||
Sat Nov 6 00:46:27 2004 Yukihiro Matsumoto <[email protected]> | ||
|
||
* string.c (rb_str_locktmp): check STR_TMPLOCK flag before | ||
locking. [ruby-dev:24727] | ||
|
||
Fri Nov 5 19:07:16 2004 NARUSE, Yui <[email protected]> | ||
|
||
* ext/nkf: follow CVS Head of original nkf. | ||
|
@@ -93,6 +111,10 @@ Fri Nov 5 13:17:54 2004 Hidetoshi NAGAI <[email protected]> | |
|
||
* ext/tk/lib/tk/text.rb: bug fix | ||
|
||
Fri Nov 5 08:52:48 2004 Yukihiro Matsumoto <[email protected]> | ||
|
||
* gc.c (gc_mark): stricter GC stack check. | ||
|
||
Fri Nov 5 08:34:43 2004 Yukihiro Matsumoto <[email protected]> | ||
|
||
* string.c (str_gsub): should have removed rb_str_unlocktmp(str). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.