summaryrefslogtreecommitdiffstats
path: root/http/kazehakase/35_PATH_MAX.dpatch
blob: 0570344561cd75e0d04c4976d5c824a88ad9cdcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#! /bin/sh /usr/share/dpatch/dpatch-run
## 35_PATH_MAX.dpatch by Yavor Doganov <yavor@gnu.org>
##
## DP: Avoid PATH_MAX, which is undefined on GNU/Hurd.

@DPATCH@
diff -urNad kazehakase-0.5.6~/module/embed/gecko/mozilla.cpp kazehakase-0.5.6/module/embed/gecko/mozilla.cpp
--- kazehakase-0.5.6~/module/embed/gecko/mozilla.cpp	2009-08-24 11:26:28.000000000 +0300
+++ kazehakase-0.5.6/module/embed/gecko/mozilla.cpp	2009-08-24 11:27:02.000000000 +0300
@@ -136,32 +136,53 @@
 #endif
 	};
 
-	char xpcomPath[PATH_MAX];
+	char *xpcomPath, *lastSlash;
+	gsize allocated = 128;
+	nsresult rv;
+
+	while (1)
+		{
+			xpcomPath = (char *) g_malloc0(allocated);
+
+			rv = GRE_GetGREPathWithProperties(&greVersion, 1,
+							  nsnull, 0,
+							  xpcomPath,
+							  allocated);
+
+			if (strlen(xpcomPath) < allocated - 1)
+				break;
+
+			g_free(xpcomPath);
+			allocated *= 2;
+		}
 
-	nsresult rv = GRE_GetGREPathWithProperties(&greVersion, 1, nsnull, 0,
-						   xpcomPath, sizeof(xpcomPath));
 	if (NS_FAILED(rv))
-		return FALSE;
+		goto out;
 
 	rv = XPCOMGlueStartup(xpcomPath);
 	if (NS_FAILED(rv))
-		return FALSE;
+		goto out;
 
 	rv = GTKEmbedGlueStartup();
 	if (NS_FAILED(rv))
-		return FALSE;
+		goto out;
 
 	rv = GTKEmbedGlueStartupInternal();
 	if (NS_FAILED(rv))
-		return FALSE;
+		goto out;
 
-	char *lastSlash = strrchr(xpcomPath, '/');
+	lastSlash = strrchr(xpcomPath, '/');
 	if (lastSlash)
 		*lastSlash = '\0';
 
 	gtk_moz_embed_set_path(xpcomPath);
 
+	g_free(xpcomPath);
 	return TRUE;
+
+ out:
+	g_free(xpcomPath);
+	return FALSE;
 }
 
 static nsresult