mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
vsnprintf.c: fix string precision
* vsnprintf.c (BSD_vfprintf): fix string width when precision is given. as the result of `memchr` is NULL or its offset from the start cannot exceed the size, the comparison was always false. [ruby-core:62737] [Bug #9861] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46098 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7833e69c2e
commit
bae87a4790
4 changed files with 29 additions and 6 deletions
|
@ -42,18 +42,23 @@ utoa(char *p, char *e, unsigned int x)
|
|||
static VALUE
|
||||
printf_test_call(int argc, VALUE *argv, VALUE self)
|
||||
{
|
||||
VALUE opt, type, num;
|
||||
VALUE opt, type, num, result;
|
||||
char format[sizeof(int) * 6 + 8], *p = format, cnv;
|
||||
int n;
|
||||
const char *s;
|
||||
|
||||
rb_scan_args(argc, argv, "2:", &type, &num, &opt);
|
||||
Check_Type(type, T_STRING);
|
||||
if (RSTRING_LEN(type) != 1) rb_raise(rb_eArgError, "wrong length(%ld)", RSTRING_LEN(type));
|
||||
switch (cnv = RSTRING_PTR(type)[0]) {
|
||||
case 'd': case 'x': case 'o': case 'X': break;
|
||||
case 'd': case 'x': case 'o': case 'X':
|
||||
n = NUM2INT(num);
|
||||
break;
|
||||
case 's':
|
||||
s = StringValueCStr(num);
|
||||
break;
|
||||
default: rb_raise(rb_eArgError, "wrong conversion(%c)", cnv);
|
||||
}
|
||||
n = NUM2INT(num);
|
||||
*p++ = '%';
|
||||
if (!NIL_P(opt)) {
|
||||
VALUE v;
|
||||
|
@ -84,8 +89,13 @@ printf_test_call(int argc, VALUE *argv, VALUE self)
|
|||
}
|
||||
*p++ = cnv;
|
||||
*p++ = '\0';
|
||||
return rb_assoc_new(rb_enc_sprintf(rb_usascii_encoding(), format, n),
|
||||
rb_usascii_str_new_cstr(format));
|
||||
if (cnv == 's') {
|
||||
result = rb_enc_sprintf(rb_usascii_encoding(), format, s);
|
||||
}
|
||||
else {
|
||||
result = rb_enc_sprintf(rb_usascii_encoding(), format, n);
|
||||
}
|
||||
return rb_assoc_new(result, rb_usascii_str_new_cstr(format));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue