summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-04-25 15:33:48 (GMT)
committerThomas Wouters <thomas@python.org>2006-04-25 15:33:48 (GMT)
commiteba52802cdde6ffc622ea3f8e12e4f55e43cc79b (patch)
tree7046e8d609bd56f018550b7b3e03606cf63eec53 /Python
parent87cc7a0fba4417d921c91785c4cdf85797c1c1cf (diff)
downloadcpython-eba52802cdde6ffc622ea3f8e12e4f55e43cc79b.zip
cpython-eba52802cdde6ffc622ea3f8e12e4f55e43cc79b.tar.gz
cpython-eba52802cdde6ffc622ea3f8e12e4f55e43cc79b.tar.bz2
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.
Diffstat (limited to 'Python')
-rw-r--r--Python/getcwd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/Python/getcwd.c b/Python/getcwd.c
index 5c57291..967d484 100644
--- a/Python/getcwd.c
+++ b/Python/getcwd.c
@@ -14,8 +14,12 @@
#endif
#ifndef MAXPATHLEN
+#if defined(PATH_MAX) && PATH_MAX > 1024
+#define MAXPATHLEN PATH_MAX
+#else
#define MAXPATHLEN 1024
#endif
+#endif
extern char *getwd(char *);