aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--bootstraptest/test_knownbug.rb1
-rw-r--r--ext/syck/rubyext.c8
3 files changed, 12 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c00973c8e6..2bc83c59c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Nov 30 19:33:38 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * ext/syck/rubyext.c (rb_syck_mktime): avoid segmentation fault.
+ [ruby-core:13735]
+
Fri Nov 30 19:05:55 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* enum.c (enum_count): precise argument number check.
diff --git a/bootstraptest/test_knownbug.rb b/bootstraptest/test_knownbug.rb
index 0cf5cf271b..947a944225 100644
--- a/bootstraptest/test_knownbug.rb
+++ b/bootstraptest/test_knownbug.rb
@@ -3,6 +3,7 @@
# So all tests will cause failure.
#
+$:.unshift File.join(File.dirname(__FILE__), "../.ext/#{RUBY_PLATFORM}")
assert_normal_exit %q{
STDERR.reopen(STDOUT)
require 'yaml'
diff --git a/ext/syck/rubyext.c b/ext/syck/rubyext.c
index 8e01bc176d..4ee1a30bee 100644
--- a/ext/syck/rubyext.c
+++ b/ext/syck/rubyext.c
@@ -262,9 +262,13 @@ rb_syck_mktime(char *str, long len)
{
char padded[] = "000000";
char *end = ptr + 1;
+ char *p = end;
while ( isdigit( *end ) ) end++;
- MEMCPY(padded, ptr + 1, char, end - (ptr + 1));
- usec = strtol(padded, NULL, 10);
+ if (end - p < sizeof(padded)) {
+ MEMCPY(padded, ptr + 1, char, end - (ptr + 1));
+ p = padded;
+ }
+ usec = strtol(p, NULL, 10);
}
else
{