diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-07 22:29:53 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-10-07 22:29:53 (GMT) |
commit | 015f4d87ab0f7d0888a9f20672feaec373f8ef36 (patch) | |
tree | 4b3444f0d329c5b4283a6f9b77e77026552d093c /Include/fileutils.h | |
parent | a4a759515e2e0114d41acdada3642265c01270ac (diff) | |
download | cpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.zip cpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.tar.gz cpython-015f4d87ab0f7d0888a9f20672feaec373f8ef36.tar.bz2 |
_Py_wrealpath() requires the size of the output buffer
Diffstat (limited to 'Include/fileutils.h')
-rw-r--r-- | Include/fileutils.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/fileutils.h b/Include/fileutils.h index 1d8df15..a232460 100644 --- a/Include/fileutils.h +++ b/Include/fileutils.h @@ -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( |