* time.c (time_strftime): RSTRING(format)->ptr might become NULL.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3659 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-04-09 15:27:39 +00:00
Родитель 8e09f5b907
Коммит 2e10fa962f
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Thu Apr 10 00:27:07 2003 Nobuyoshi Nakada <nobu.nokada@softhome.net>
* time.c (time_strftime): RSTRING(format)->ptr might become NULL.
Wed Apr 9 23:54:50 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
* variable.c (rb_obj_remove_instance_variable): better message.

6
time.c
Просмотреть файл

@ -1279,7 +1279,7 @@ time_strftime(time, format)
if (len == 0) {
rb_warning("strftime called with empty format string");
}
if (strlen(fmt) < len) {
else if (strlen(fmt) < len) {
/* Ruby string may contain \0's. */
char *p = fmt, *pe = fmt + len;
@ -1297,7 +1297,9 @@ time_strftime(time, format)
}
return str;
}
len = rb_strftime(&buf, RSTRING(format)->ptr, &tobj->tm);
else {
len = rb_strftime(&buf, RSTRING(format)->ptr, &tobj->tm);
}
str = rb_str_new(buf, len);
if (buf != buffer) free(buf);
return str;