aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch')
-rw-r--r--recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch b/recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch
deleted file mode 100644
index cb30f896ed..0000000000
--- a/recipes/mozilla/firefox-2.0.0.3/mult-crash-fix.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-$OpenBSD: patch-nsprpub_pr_src_misc_prdtoa_c,v 1.1 2005/11/03 00:59:43 pvalchev Exp $
-Index: mozilla/nsprpub/pr/src/misc/prdtoa.c
-===================================================================
---- mozilla.orig/nsprpub/pr/src/misc/prdtoa.c
-+++ mozilla/nsprpub/pr/src/misc/prdtoa.c
-@@ -855,7 +855,7 @@ mult
- wc = wa + wb;
- if (wc > a->maxwds)
- k++;
-- c = Balloc(k);
-+ c = Balloc(k*2);
- for(x = c->x, xa = x + wc; x < xa; x++)
- *x = 0;
- xa = a->x;