* ext/json/ext/parser/parser.c (JSON_parse_string):

associate encoding.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2008-10-10 08:28:19 +00:00
Родитель c71e65e92f
Коммит 5b35f2c137
2 изменённых файлов: 8 добавлений и 1 удалений

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

@ -1,3 +1,8 @@
Fri Oct 10 17:26:50 2008 NARUSE, Yui <naruse@ruby-lang.org>
* ext/json/ext/parser/parser.c (JSON_parse_string):
associate encoding.
Fri Oct 10 10:18:21 2008 Ryan Davis <ryan@wrath.local>
* lib/test/*: reverted back to test/unit.

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

@ -1,5 +1,6 @@
#line 1 "parser.rl"
#include "ruby.h"
#include "ruby/encoding.h"
#include "unicode.h"
#define EVIL 0x666
@ -1405,7 +1406,8 @@ case 7:
#line 411 "parser.rl"
if (cs >= JSON_string_first_final) {
return p + 1;
rb_enc_associate(*result, rb_utf8_encoding());
return p + 1;
} else {
return NULL;
}