Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 155661 Details for
Bug 241722
[fix available] crash after copying/pasting text with many links
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
fix as in FC-6
workspace.fwk55.patch (text/plain), 700 bytes, created by
Caolan McNamara
on 2007-05-30 07:53:27 UTC
(
hide
)
Description:
fix as in FC-6
Filename:
MIME Type:
Creator:
Caolan McNamara
Created:
2007-05-30 07:53:27 UTC
Size:
700 bytes
patch
obsolete
>Index: util/tools/source/stream/stream.cxx >diff -u util/tools/source/stream/stream.cxx:1.24 util/tools/source/stream/stream.cxx:1.24.22.1 >--- util/tools/source/stream/stream.cxx:1.24 Sat Sep 16 18:01:33 2006 >+++ util/tools/source/stream/stream.cxx Mon Oct 23 05:56:08 2006 >@@ -1159,7 +1159,19 @@ > sal_Size SvStream::SeekRel( sal_sSize nPos ) > { > sal_Size nActualPos = Tell(); >- nActualPos += nPos; >+ >+ if ( nPos >= 0 ) >+ { >+ if ( SAL_MAX_SIZE - nActualPos > (sal_Size)nPos ) >+ nActualPos += nPos; >+ } >+ else >+ { >+ sal_Size nAbsPos = (sal_Size)-nPos; >+ if ( nActualPos >= nAbsPos ) >+ nActualPos -= nAbsPos; >+ } >+ > pBufPos = pRWBuf + nActualPos; > return Seek( nActualPos ); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 241722
:
155624
| 155661