mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
Define MAXPATHLEN to be at least PATH_MAX, if that's defined. Python uses
MAXPATHLEN-sized buffers for various output-buffers (like to realpath()), and that's correct on BSD platforms, but not Linux (which uses PATH_MAX, and does not define MAXPATHLEN.) Cursory googling suggests Linux is following a newer standard than BSD, but in cases like this, who knows. Using the greater of PATH_MAX and 1024 as a fallback for MAXPATHLEN seems to be the most portable solution.
This commit is contained in:
parent
0452049b6f
commit
1ddba60e3d
3 changed files with 12 additions and 0 deletions
|
@ -37,8 +37,12 @@ extern "C" {
|
|||
|
||||
/* Max pathname length */
|
||||
#ifndef MAXPATHLEN
|
||||
#if defined(PATH_MAX) && PATH_MAX > 1024
|
||||
#define MAXPATHLEN PATH_MAX
|
||||
#else
|
||||
#define MAXPATHLEN 1024
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Search path entry delimiter */
|
||||
#ifndef DELIM
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue