Skip to content

Commit

Permalink
deps: update to uvwasi 0.0.13
Browse files Browse the repository at this point in the history
Notable changes:

- A bug has been fixed in `uvwasi_fd_readdir()` that caused
  the number of entries to be processed incorrectly.

PR-URL: #44524
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com>
  • Loading branch information
cjihrig authored and RafaelGSS committed Sep 26, 2022
1 parent 4e6f786 commit 3cc8f4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deps/uvwasi/include/uvwasi.h
Expand Up @@ -10,7 +10,7 @@ extern "C" {

#define UVWASI_VERSION_MAJOR 0
#define UVWASI_VERSION_MINOR 0
#define UVWASI_VERSION_PATCH 12
#define UVWASI_VERSION_PATCH 13
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down
8 changes: 7 additions & 1 deletion deps/uvwasi/src/uvwasi.c
Expand Up @@ -1384,8 +1384,14 @@ uvwasi_errno_t uvwasi_fd_readdir(uvwasi_t* uvwasi,
}

/* Write dirent to the buffer if it will fit. */
if (UVWASI_SERDES_SIZE_dirent_t + *bufused > buf_len)
if (UVWASI_SERDES_SIZE_dirent_t + *bufused > buf_len) {
/* If there are more entries to be written to the buffer we set
* bufused, which is the return value, to the length of the buffer
* which indicates that there are more entries to be read.
*/
*bufused = buf_len;
break;
}

uvwasi_serdes_write_dirent_t(buf, *bufused, &dirent);
*bufused += UVWASI_SERDES_SIZE_dirent_t;
Expand Down

0 comments on commit 3cc8f4b

Please sign in to comment.