Skip to content

Commit 7c5084a

Browse files
committed
use Runtime::setError to report error.
1 parent 2f1b2a4 commit 7c5084a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

fibjs/include/path.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -588,10 +588,11 @@ inline result_t _fullpath_win32(exlib::string path, exlib::string& retVal)
588588
return CHECK_ERROR(LastError());
589589

590590
retVal = utf16to8String(utf16_buffer, (int32_t)utf16_len);
591+
592+
return 0;
591593
#else
592-
ThrowError("not supported on none Win32 platform !");
594+
return Runtime::setError("not supported on none Win32 platform !");
593595
#endif
594-
return 0;
595596
}
596597

597598
} /* namespace fibjs */

0 commit comments

Comments
 (0)