aboutsummaryrefslogtreecommitdiffstats
path: root/www/firefox/files
diff options
context:
space:
mode:
authormarcus <marcus@FreeBSD.org>2006-02-20 06:23:03 +0800
committermarcus <marcus@FreeBSD.org>2006-02-20 06:23:03 +0800
commitcfaa93c4182f3e0661853113d0d5475876b09a3b (patch)
tree0d007b01a7cacc6556d2da663ae5b44daf86a152 /www/firefox/files
parent4f7d5f6ac9fe14215dac6343d09bf3d8df3c6476 (diff)
downloadfreebsd-ports-gnome-cfaa93c4182f3e0661853113d0d5475876b09a3b.tar.gz
freebsd-ports-gnome-cfaa93c4182f3e0661853113d0d5475876b09a3b.tar.zst
freebsd-ports-gnome-cfaa93c4182f3e0661853113d0d5475876b09a3b.zip
Fix a problem where Firefox creates its ~/.mozilla directory using stack
garbage. PR: 92899 Submitted by: truckman
Diffstat (limited to 'www/firefox/files')
-rw-r--r--www/firefox/files/patch-toolkit_xre_nsXREDirProvider.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/www/firefox/files/patch-toolkit_xre_nsXREDirProvider.cpp b/www/firefox/files/patch-toolkit_xre_nsXREDirProvider.cpp
new file mode 100644
index 000000000000..0c5a07ab210d
--- /dev/null
+++ b/www/firefox/files/patch-toolkit_xre_nsXREDirProvider.cpp
@@ -0,0 +1,19 @@
+--- toolkit/xre/nsXREDirProvider.cpp.orig Tue Oct 4 11:46:26 2005
++++ toolkit/xre/nsXREDirProvider.cpp Sun Feb 5 23:54:31 2006
+@@ -820,6 +820,7 @@
+
+ char* appNameFolder = nsnull;
+ char profileFolderName[MAXPATHLEN] = ".";
++ char temp[MAXPATHLEN];
+
+ // Offset 1 for the outermost folder to make it hidden (i.e. using the ".")
+ char* writing = profileFolderName + 1;
+@@ -829,7 +830,6 @@
+ rv = localDir->AppendNative(nsDependentCString(profileFolderName));
+ NS_ENSURE_SUCCESS(rv, rv);
+
+- char temp[MAXPATHLEN];
+ GetProfileFolderName(temp, gAppData->name);
+ appNameFolder = temp;
+ }
+