1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-20 17:19:01 +00:00

fix(core): correct dump_qstr_pool()

[no changelog]
This commit is contained in:
Roman Zeyde 2025-03-26 19:24:05 +02:00 committed by Roman Zeyde
parent 4fce1f55ee
commit 48b2f07ad3

View File

@ -702,7 +702,7 @@ void dump_qstr_pool(FILE *out, const qstr_pool_t *pool) {
for (const char *const *q = pool->qstrs, *const *q_top =
pool->qstrs + pool->len;
q < q_top; q++) {
escape_and_dump_string(out, Q_GET_DATA(*q));
escape_and_dump_string(out, *q);
if (q < (q_top - 1))
fprintf(out, ",\n");
else