Sign in
◑
Theme
chromium
/
external
/
github.com
/
v8
/
node
/
refs/heads/fuchsia
/
.
/
test
/
wasi
/
c
/
cant_dotdot.c
blob: e2722062cd0156e678702b26ea0d8ccb79e3804e [
file
] [
edit
]
#include
<assert.h>
#include
<errno.h>
#include
<stdio.h>
int
main
()
{
FILE
*
file
=
fopen
(
"/sandbox/../outside.txt"
,
"r"
);
assert
(
file
==
NULL
);
assert
(
errno
==
ENOTCAPABLE
);
return
0
;
}