mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-11 17:35:13 +00:00
Update iwasm_main.c
This commit is contained in:
parent
f663f44bd7
commit
4979379246
|
@ -361,7 +361,11 @@ static attr_container_t * read_test_sensor(void * sensor)
|
|||
//luc: for test
|
||||
attr_container_t *attr_obj = attr_container_create("read test sensor data");
|
||||
if (attr_obj) {
|
||||
attr_container_set_string(&attr_obj, "name", "read test sensor");
|
||||
bool ret = attr_container_set_string(&attr_obj, "name", "read test sensor");
|
||||
if (!ret) {
|
||||
attr_container_destroy(attr_obj);
|
||||
return NULL;
|
||||
}
|
||||
return attr_obj;
|
||||
}
|
||||
return NULL;
|
||||
|
|
Loading…
Reference in New Issue
Block a user