зеркало из https://github.com/github/ruby.git
* pack.c (pack_unpack): upper half of hexdigits has never been used.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
42a483d392
Коммит
1c30bc4cca
|
@ -1,3 +1,7 @@
|
|||
Thu Jul 31 12:23:53 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* pack.c (pack_unpack): upper half of hexdigits has never been used.
|
||||
|
||||
Thu Jul 31 11:31:29 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/syck/syck.h (ASSERT): fix typo at r18176.
|
||||
|
|
2
pack.c
2
pack.c
|
@ -1291,7 +1291,7 @@ infected_str_new(const char *ptr, long len, VALUE str)
|
|||
static VALUE
|
||||
pack_unpack(VALUE str, VALUE fmt)
|
||||
{
|
||||
static const char *hexdigits = "0123456789abcdef0123456789ABCDEFx";
|
||||
static const char hexdigits[] = "0123456789abcdef";
|
||||
char *s, *send;
|
||||
char *p, *pend;
|
||||
VALUE ary;
|
||||
|
|
Загрузка…
Ссылка в новой задаче