Skip to content

Commit

Permalink
Fix sample basic intToStr was called with wrong length (#2876)
Browse files Browse the repository at this point in the history
Reported in #2874.
  • Loading branch information
wenyongh authored Dec 7, 2023
1 parent 0b332d8 commit f42ffe1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,9 @@
- Fix fast-jit accessing shared memory's fields issue (#2841)
- Fix wasm loader handle op_br_table and op_drop (#2864)
- Fix block with type issue in fast interp (#2866)
- Fix float argument handling for riscv32 ilp32d (#2871)
- Portably handle fd_advise on directory fd (#2875)
- Fix sample basic intToStr was called with wrong length (#2876)

### Enhancements
- Implement strict validation of thread IDs according to the specification (#2521)
Expand Down Expand Up @@ -127,6 +130,7 @@
- Use wasm_config_t to pass private configuration to wasm_engine_new (#2837)
- core/iwasm/interpreter/wasm_loader.c: remove an extra validation (#2845)
- Don't add "+d" to riscv cpu features if already given (#2855)
- Fix compilation warnings on Windows (#2868)

### Others
- Add mutex stress test (#2472)
Expand Down
2 changes: 1 addition & 1 deletion samples/basic/wasm-apps/testapp.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ float_to_string(float n, char *res, int res_size, int afterpoint)
// is needed to handle cases like 233.007
fpart = fpart * get_pow(10, afterpoint);

intToStr((int)fpart, res + i + 1, sizeof(res + i + 1), afterpoint);
intToStr((int)fpart, res + i + 1, res_size - i - 1, afterpoint);
}
}

Expand Down

0 comments on commit f42ffe1

Please sign in to comment.