@@ -2795,27 +2795,26 @@ static void Mkdtemp(const FunctionCallbackInfo<Value>& args) {
2795
2795
2796
2796
const enum encoding encoding = ParseEncoding (isolate, args[1 ], UTF8);
2797
2797
2798
- FSReqBase* req_wrap_async = GetReqWrap (args, 2 );
2799
- if ( req_wrap_async != nullptr ) { // mkdtemp(tmpl, encoding, req)
2798
+ if (argc > 2 ) { // mkdtemp(tmpl, encoding, req)
2799
+ FSReqBase* req_wrap_async = GetReqWrap (args, 2 );
2800
2800
FS_ASYNC_TRACE_BEGIN1 (
2801
2801
UV_FS_MKDTEMP, req_wrap_async, " path" , TRACE_STR_COPY (*tmpl))
2802
2802
AsyncCall (env, req_wrap_async, args, " mkdtemp" , encoding, AfterStringPath,
2803
2803
uv_fs_mkdtemp, *tmpl);
2804
- } else { // mkdtemp(tmpl, encoding, undefined, ctx)
2805
- CHECK_EQ (argc, 4 );
2806
- FSReqWrapSync req_wrap_sync;
2804
+ } else { // mkdtemp(tmpl, encoding)
2805
+ FSReqWrapSync req_wrap_sync (" mkdtemp" , *tmpl);
2807
2806
FS_SYNC_TRACE_BEGIN (mkdtemp );
2808
- SyncCall (env, args[ 3 ], &req_wrap_sync, " mkdtemp " ,
2809
- uv_fs_mkdtemp, *tmpl);
2807
+ int result =
2808
+ SyncCallAndThrowOnError (env, &req_wrap_sync, uv_fs_mkdtemp, *tmpl);
2810
2809
FS_SYNC_TRACE_END (mkdtemp );
2811
- const char * path = req_wrap_sync.req .path ;
2812
-
2810
+ if (is_uv_error (result)) {
2811
+ return ;
2812
+ }
2813
2813
Local<Value> error;
2814
2814
MaybeLocal<Value> rc =
2815
- StringBytes::Encode (isolate, path, encoding, &error);
2815
+ StringBytes::Encode (isolate, req_wrap_sync. req . path , encoding, &error);
2816
2816
if (rc.IsEmpty ()) {
2817
- Local<Object> ctx = args[3 ].As <Object>();
2818
- ctx->Set (env->context (), env->error_string (), error).Check ();
2817
+ env->isolate ()->ThrowException (error);
2819
2818
return ;
2820
2819
}
2821
2820
args.GetReturnValue ().Set (rc.ToLocalChecked ());
0 commit comments