mirror of https://github.com/arendst/Tasmota.git
Berry fix stack corruption in solidify.dump
This commit is contained in:
parent
990065df69
commit
7bbd6bddfe
|
@ -125,9 +125,7 @@ static void m_solidify_bvalue(bvm *vm, bvalue * value, const char *classname, co
|
||||||
be_pushstring(vm, str(var_tostr(value)));
|
be_pushstring(vm, str(var_tostr(value)));
|
||||||
be_toescape(vm, -1, 'u');
|
be_toescape(vm, -1, 'u');
|
||||||
logfmt("be_nested_str_literal(%s)", be_tostring(vm, -1));
|
logfmt("be_nested_str_literal(%s)", be_tostring(vm, -1));
|
||||||
// logfmt("be_nested_string(%s", be_tostring(vm, -1));
|
be_pop(vm, 1);
|
||||||
// be_pop(vm, 1);
|
|
||||||
// logfmt(", %i, %zu)", be_strhash(var_tostr(value)), len >= 255 ? 255 : len);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case BE_CLOSURE:
|
case BE_CLOSURE:
|
||||||
|
|
Loading…
Reference in New Issue