diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-31 03:23:55 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-07-31 03:23:55 +0000 |
| commit | ad5a5f940df5e84c17ea820aacdc15eb7bb55aed (patch) | |
| tree | 41aa452cd9f84087130fa380ac1e71922b12a415 | |
| parent | 8310a6a701f6a67a11ba2e2691fcc277ca647489 (diff) | |
* pack.c (pack_unpack): upper half of hexdigits has never been used.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@18288 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | pack.c | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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. @@ -1304,7 +1304,7 @@ static VALUE pack_unpack(str, fmt) VALUE str, fmt; { - static const char hexdigits[] = "0123456789abcdef0123456789ABCDEFx"; + static const char hexdigits[] = "0123456789abcdef"; char *s, *send; char *p, *pend; VALUE ary; |
