mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-23 18:56:38 +00:00
Upstream Berry fix removing assert (#22054)
This commit is contained in:
parent
2292006fe3
commit
71f0a06356
@ -355,7 +355,7 @@ int be_module_attr(bvm *vm, bmodule *module, bstring *attr, bvalue *dst)
|
|||||||
|
|
||||||
bbool be_module_setmember(bvm *vm, bmodule *module, bstring *attr, bvalue *src)
|
bbool be_module_setmember(bvm *vm, bmodule *module, bstring *attr, bvalue *src)
|
||||||
{
|
{
|
||||||
assert(src);
|
be_assert(src);
|
||||||
bmap *attrs = module->table;
|
bmap *attrs = module->table;
|
||||||
if (!gc_isconst(attrs)) {
|
if (!gc_isconst(attrs)) {
|
||||||
bvalue *v = be_map_findstr(vm, attrs, attr);
|
bvalue *v = be_map_findstr(vm, attrs, attr);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user