mirror of https://github.com/arendst/Tasmota.git
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)
|
||||
{
|
||||
assert(src);
|
||||
be_assert(src);
|
||||
bmap *attrs = module->table;
|
||||
if (!gc_isconst(attrs)) {
|
||||
bvalue *v = be_map_findstr(vm, attrs, attr);
|
||||
|
|
Loading…
Reference in New Issue