]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Backport trunk's r45715:
authorThomas Wouters <thomas@python.org>
Tue, 25 Apr 2006 15:33:48 +0000 (15:33 +0000)
committerThomas Wouters <thomas@python.org>
Tue, 25 Apr 2006 15:33:48 +0000 (15:33 +0000)
commiteba52802cdde6ffc622ea3f8e12e4f55e43cc79b
tree7046e8d609bd56f018550b7b3e03606cf63eec53
parent87cc7a0fba4417d921c91785c4cdf85797c1c1cf
Backport trunk's r45715:

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.
Include/osdefs.h
Modules/posixmodule.c
Python/getcwd.c