diff options
author | marcus <marcus@FreeBSD.org> | 2006-02-19 22:23:03 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2006-02-19 22:23:03 +0000 |
commit | cfaa93c4182f3e0661853113d0d5475876b09a3b (patch) | |
tree | 0d007b01a7cacc6556d2da663ae5b44daf86a152 /www/firefox | |
parent | 4f7d5f6ac9fe14215dac6343d09bf3d8df3c6476 (diff) | |
download | FreeBSD-ports-cfaa93c4182f3e0661853113d0d5475876b09a3b.zip FreeBSD-ports-cfaa93c4182f3e0661853113d0d5475876b09a3b.tar.gz |
Fix a problem where Firefox creates its ~/.mozilla directory using stack
garbage.
PR: 92899
Submitted by: truckman
Diffstat (limited to 'www/firefox')
-rw-r--r-- | www/firefox/Makefile | 1 | ||||
-rw-r--r-- | www/firefox/files/patch-toolkit_xre_nsXREDirProvider.cpp | 19 |
2 files changed, 20 insertions, 0 deletions
diff --git a/www/firefox/Makefile b/www/firefox/Makefile index a1487e7..27ae5726 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -8,6 +8,7 @@ PORTNAME= firefox DISTVERSION= 1.5.0.1 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= ${MASTER_SITE_MOZILLA} 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 0000000..0c5a07a --- /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; + } + |