diff options
Diffstat (limited to 'www/firefox/patches/patch-eb')
-rw-r--r-- | www/firefox/patches/patch-eb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/www/firefox/patches/patch-eb b/www/firefox/patches/patch-eb deleted file mode 100644 index 946d9bf4c2d..00000000000 --- a/www/firefox/patches/patch-eb +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-eb,v 1.2 2007/05/12 13:53:11 ghen Exp $ - ---- xpfe/components/history/src/nsGlobalHistory.cpp.orig 2006-02-02 20:55:17.000000000 +0100 -+++ xpfe/components/history/src/nsGlobalHistory.cpp -@@ -1055,6 +1055,9 @@ nsGlobalHistory::SetPageTitle(nsIURI *aU - rv = aURI->GetSpec(URISpec); - NS_ENSURE_SUCCESS(rv, rv); - -+ if (URISpec.Length() > HISTORY_URI_LENGTH_MAX) -+ URISpec.Left(URISpec, HISTORY_URI_LENGTH_MAX); -+ - nsCOMPtr<nsIMdbRow> row; - rv = FindRow(kToken_URLColumn, URISpec.get(), getter_AddRefs(row)); - |