From 4c465f496f602860f5044bded01fde8883083e70 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Thu, 14 Jul 2011 15:08:25 -0400
Subject: [PATCH] Eliminate use of PATH_MAX, which is bogus anyway.

---
 indra/llcommon/tests/llsdserialize_test.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/tests/llsdserialize_test.cpp b/indra/llcommon/tests/llsdserialize_test.cpp
index 4e09a4fe3c8..687c64dfeb5 100644
--- a/indra/llcommon/tests/llsdserialize_test.cpp
+++ b/indra/llcommon/tests/llsdserialize_test.cpp
@@ -65,7 +65,7 @@ std::vector<U8> string_to_vector(const std::string& str)
 boost::filesystem::path temp_directory_path()
 {
 #if LL_WINDOWS
-    char buffer[PATH_MAX];
+    char buffer[4096];
     GetTempPath(sizeof(buffer), buffer);
     return boost::filesystem::path(buffer);
 
-- 
GitLab