Skip to content

Commit

Permalink
deps,test: update to uvwasi 0.0.4
Browse files Browse the repository at this point in the history
This commit updates the uvwasi dependency to version 0.0.4. The
most notable change is a refactor of the way paths are resolved.
All paths, including symlinks, are now resolved in terms of
sandboxed paths instead of leaking host system paths.

PR-URL: #31363
Reviewed-By: David Carlier <[email protected]>
Reviewed-By: Tobias Nießen <[email protected]>
Reviewed-By: Rich Trott <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
  • Loading branch information
cjihrig authored and codebytere committed Feb 17, 2020
1 parent 6055134 commit 5bd3f6c
Show file tree
Hide file tree
Showing 6 changed files with 285 additions and 95 deletions.
1 change: 0 additions & 1 deletion deps/uvwasi/include/fd_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
#include <stdint.h>
#include "uv.h"
#include "wasi_types.h"
#include "uv_mapping.h"

struct uvwasi_s;

Expand Down
4 changes: 2 additions & 2 deletions deps/uvwasi/include/uvwasi.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
extern "C" {
#endif

#include "uv.h"
#include "wasi_types.h"
#include "uv_mapping.h"
#include "fd_table.h"

#define UVWASI_VERSION_MAJOR 0
#define UVWASI_VERSION_MINOR 0
#define UVWASI_VERSION_PATCH 3
#define UVWASI_VERSION_PATCH 4
#define UVWASI_VERSION_HEX ((UVWASI_VERSION_MAJOR << 16) | \
(UVWASI_VERSION_MINOR << 8) | \
(UVWASI_VERSION_PATCH))
Expand Down
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit 5bd3f6c

Please sign in to comment.