From: Debian X Strike Force Date: Thu, 3 Apr 2025 10:47:45 +0000 (+0300) Subject: path_max X-Git-Tag: archive/raspbian/25.0.7-2+rpi1^2^2^2^2^2~8 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b316cef3c3e63cd19b5122d9bfd5e1c0f7904911;p=mesa.git path_max Gbp-Pq: Name path_max.diff --- diff --git a/src/gallium/auxiliary/pipe-loader/pipe_loader.c b/src/gallium/auxiliary/pipe-loader/pipe_loader.c index 721204d95..b97b2a4e5 100644 --- a/src/gallium/auxiliary/pipe-loader/pipe_loader.c +++ b/src/gallium/auxiliary/pipe-loader/pipe_loader.c @@ -42,6 +42,10 @@ #define PATH_MAX _MAX_PATH #endif +#if !defined(PATH_MAX) && defined(__GNU__) +#define PATH_MAX (4096) +#endif + #define MODULE_PREFIX "pipe_" static int (*backends[])(struct pipe_loader_device **, int) = { diff --git a/src/util/tests/cache_test.cpp b/src/util/tests/cache_test.cpp index f181178c8..0e9430386 100644 --- a/src/util/tests/cache_test.cpp +++ b/src/util/tests/cache_test.cpp @@ -88,8 +88,8 @@ check_directories_created(void *mem_ctx, const char *cache_dir) { bool sub_dirs_created = false; - char buf[PATH_MAX]; - if (getcwd(buf, PATH_MAX)) { + char *buf = getcwd(NULL, 0); + if (buf) { char *full_path = ralloc_asprintf(mem_ctx, "%s%s", buf, ++cache_dir); struct stat sb; if (stat(full_path, &sb) != -1 && S_ISDIR(sb.st_mode)) diff --git a/src/util/tests/process_test.c b/src/util/tests/process_test.c index dd4e7bf8c..0e937e2c1 100644 --- a/src/util/tests/process_test.c +++ b/src/util/tests/process_test.c @@ -36,6 +36,10 @@ #define PATH_MAX MAX_PATH #endif +#if !defined(PATH_MAX) && defined(__GNU__) +#define PATH_MAX (4096) +#endif + static bool error = false; static void