mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01:00
esp8266/moduos: Populate release field of uname in case it was GC'd.
This commit is contained in:
@@ -58,10 +58,9 @@ STATIC mp_obj_tuple_t os_uname_info_obj = {
|
||||
};
|
||||
|
||||
STATIC mp_obj_t os_uname(void) {
|
||||
if (os_uname_info_obj.items[2] == NULL) {
|
||||
const char *ver = system_get_sdk_version();
|
||||
os_uname_info_obj.items[2] = mp_obj_new_str(ver, strlen(ver), false);
|
||||
}
|
||||
// We must populate the "release" field each time in case it was GC'd since the last call.
|
||||
const char *ver = system_get_sdk_version();
|
||||
os_uname_info_obj.items[2] = mp_obj_new_str(ver, strlen(ver), false);
|
||||
return (mp_obj_t)&os_uname_info_obj;
|
||||
}
|
||||
STATIC MP_DEFINE_CONST_FUN_OBJ_0(os_uname_obj, os_uname);
|
||||
|
||||
Reference in New Issue
Block a user