aboutsummaryrefslogtreecommitdiff
path: root/games/spring/files/patch-rts-System-Platform-Misc
blob: b2d216f011b94c5d99eb5ae702bbd641525780e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
+++ rts/System/Platform/Misc.cpp	2015-04-08 20:05:21 -0400
@@ -226,5 +226,6 @@
 	mib[2] = KERN_PROC_PATHNAME;
 	mib[3] = -1;
-	char buf[PATH_MAX];
+	long maxpath = pathconf("/", _PC_PATH_MAX);
+	char buf[maxpath];
 	size_t cb = sizeof(buf);
 	int err = sysctl(mib, 4, buf, &cb, NULL, 0);