We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11ab807 commit f2f8ae1Copy full SHA for f2f8ae1
extmod/modujson.c
@@ -278,7 +278,7 @@ STATIC mp_obj_t mod_ujson_loads(mp_obj_t obj) {
278
const char *buf = mp_obj_str_get_data(obj, &len);
279
vstr_t vstr = {len, len, (char*)buf, true};
280
mp_obj_stringio_t sio = {{&mp_type_stringio}, &vstr, 0};
281
- return mod_ujson_load(&sio);
+ return mod_ujson_load(MP_OBJ_FROM_PTR(&sio));
282
}
283
STATIC MP_DEFINE_CONST_FUN_OBJ_1(mod_ujson_loads_obj, mod_ujson_loads);
284
0 commit comments