summaryrefslogtreecommitdiff
path: root/firefox-1.5-pango-underline.patch
diff options
context:
space:
mode:
authorMartin Stransky <stransky@fedoraproject.org>2007-09-10 13:10:00 +0000
committerMartin Stransky <stransky@fedoraproject.org>2007-09-10 13:10:00 +0000
commit5c1d44cbf699f3ac00b5830dee6eb2d7985d110c (patch)
tree6bbdb959a5b2a3d971330a67548fafaeef8ea062 /firefox-1.5-pango-underline.patch
parent- Fix default page for all locales (diff)
downloadlibrewolf-fedora-ff-5c1d44cbf699f3ac00b5830dee6eb2d7985d110c.tar.gz
librewolf-fedora-ff-5c1d44cbf699f3ac00b5830dee6eb2d7985d110c.tar.bz2
librewolf-fedora-ff-5c1d44cbf699f3ac00b5830dee6eb2d7985d110c.zip
- added fix for #246248 - firefox crashes when searching for word "do"
Diffstat (limited to 'firefox-1.5-pango-underline.patch')
-rw-r--r--firefox-1.5-pango-underline.patch6
1 files changed, 3 insertions, 3 deletions
diff --git a/firefox-1.5-pango-underline.patch b/firefox-1.5-pango-underline.patch
index 260be89..c6b8649 100644
--- a/firefox-1.5-pango-underline.patch
+++ b/firefox-1.5-pango-underline.patch
@@ -12,9 +12,9 @@ diff -pruN -x '.moz*' -x .deps -x 'thunderbird*' -x '*.mk' -x 'config*' -x dist
- PRInt32 i;
+ PRUint32 startOffset = 0;
+ PRUint32 textWidth = 0;
-+ PRUint32 start = PR_MAX(0,(aDetails->mStart - (PRInt32)aIndex));
-+ PRUint32 end = PR_MIN((PRInt32)aLength,(aDetails->mEnd - (PRInt32)aIndex));
-+ PRUint32 i;
++ PRInt32 start = PR_MAX(0,(aDetails->mStart - (PRInt32)aIndex));
++ PRInt32 end = PR_MIN((PRInt32)aLength,(aDetails->mEnd - (PRInt32)aIndex));
++ PRInt32 i;
if ((start < end) && ((aLength - start) > 0))
{
//aDetails allready processed to have offsets from frame start not content offsets
bgstack15