commit | 015f4d87ab0f7d0888a9f20672feaec373f8ef36 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Thu Oct 07 22:29:53 2010 +0000 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Thu Oct 07 22:29:53 2010 +0000 |
tree | 4b3444f0d329c5b4283a6f9b77e77026552d093c | |
parent | a4a759515e2e0114d41acdada3642265c01270ac [diff] [blame] |
_Py_wrealpath() requires the size of the output buffer
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 @@ #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(