@@ -1863,28 +1863,27 @@ static void RealPath(const FunctionCallbackInfo<Value>& args) {
1863
1863
Isolate* isolate = env->isolate ();
1864
1864
1865
1865
const int argc = args.Length ();
1866
- CHECK_GE (argc, 3 );
1866
+ CHECK_GE (argc, 2 );
1867
1867
1868
1868
BufferValue path (isolate, args[0 ]);
1869
1869
CHECK_NOT_NULL (*path);
1870
1870
1871
1871
const enum encoding encoding = ParseEncoding (isolate, args[1 ], UTF8);
1872
1872
1873
- FSReqBase* req_wrap_async = GetReqWrap (args, 2 );
1874
- if ( req_wrap_async != nullptr ) { // realpath(path, encoding, req)
1873
+ if (argc > 2 ) { // realpath(path, encoding, req)
1874
+ FSReqBase* req_wrap_async = GetReqWrap (args, 2 );
1875
1875
FS_ASYNC_TRACE_BEGIN1 (
1876
1876
UV_FS_REALPATH, req_wrap_async, " path" , TRACE_STR_COPY (*path))
1877
1877
AsyncCall (env, req_wrap_async, args, " realpath" , encoding, AfterStringPtr,
1878
1878
uv_fs_realpath, *path);
1879
1879
} else { // realpath(path, encoding, undefined, ctx)
1880
- CHECK_EQ (argc, 4 );
1881
- FSReqWrapSync req_wrap_sync;
1880
+ FSReqWrapSync req_wrap_sync (" realpath" , *path);
1882
1881
FS_SYNC_TRACE_BEGIN (realpath );
1883
- int err = SyncCall (env, args[ 3 ], &req_wrap_sync, " realpath " ,
1884
- uv_fs_realpath, *path);
1882
+ int err =
1883
+ SyncCallAndThrowOnError (env, &req_wrap_sync, uv_fs_realpath, *path);
1885
1884
FS_SYNC_TRACE_END (realpath );
1886
1885
if (err < 0 ) {
1887
- return ; // syscall failed, no need to continue, error info is in ctx
1886
+ return ;
1888
1887
}
1889
1888
1890
1889
const char * link_path = static_cast <const char *>(req_wrap_sync.req .ptr );
@@ -1895,8 +1894,7 @@ static void RealPath(const FunctionCallbackInfo<Value>& args) {
1895
1894
encoding,
1896
1895
&error);
1897
1896
if (rc.IsEmpty ()) {
1898
- Local<Object> ctx = args[3 ].As <Object>();
1899
- ctx->Set (env->context (), env->error_string (), error).Check ();
1897
+ env->isolate ()->ThrowException (error);
1900
1898
return ;
1901
1899
}
1902
1900
0 commit comments