mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
_Py_wrealpath() requires the size of the output buffer
This commit is contained in:
parent
a4a759515e
commit
015f4d87ab
3 changed files with 6 additions and 4 deletions
|
@ -41,7 +41,8 @@ PyAPI_FUNC(int) _Py_wreadlink(
|
|||
#ifdef HAVE_REALPATH
|
||||
PyAPI_FUNC(wchar_t*) _Py_wrealpath(
|
||||
const wchar_t *path,
|
||||
wchar_t *resolved_path);
|
||||
wchar_t *resolved_path,
|
||||
size_t resolved_path_size);
|
||||
#endif
|
||||
|
||||
PyAPI_FUNC(wchar_t*) _Py_wgetcwd(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue