Skip to content

Commit 7c9c981

Browse files
authored
src: fix order of CHECK_NOT_NULL/dereference
`ASYNC_THROW_IF_INSUFFICIENT_PERMISSIONS` may dereference `req_wrap_async`, so `CHECK_NOT_NULL(req_wrap_async)` should be used before and not after. PR-URL: #59487 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ulises Gascón <[email protected]>
1 parent d36941d commit 7c9c981

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_file.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1559,12 +1559,12 @@ static void Unlink(const FunctionCallbackInfo<Value>& args) {
15591559

15601560
if (argc > 1) { // unlink(path, req)
15611561
FSReqBase* req_wrap_async = GetReqWrap(args, 1);
1562+
CHECK_NOT_NULL(req_wrap_async);
15621563
ASYNC_THROW_IF_INSUFFICIENT_PERMISSIONS(
15631564
env,
15641565
req_wrap_async,
15651566
permission::PermissionScope::kFileSystemWrite,
15661567
path.ToStringView());
1567-
CHECK_NOT_NULL(req_wrap_async);
15681568
FS_ASYNC_TRACE_BEGIN1(
15691569
UV_FS_UNLINK, req_wrap_async, "path", TRACE_STR_COPY(*path))
15701570
AsyncCall(env, req_wrap_async, args, "unlink", UTF8, AfterNoArgs,

0 commit comments

Comments
 (0)