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 161161 Details for
Bug 251717
CVE-2007-4251 OpenOffice crashes upon opening certain files
[?]
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]
patch to avoid
negative.packagevalues.patch (text/plain), 1.24 KB, created by
Caolan McNamara
on 2007-08-13 09:14:36 UTC
(
hide
)
Description:
patch to avoid
Filename:
MIME Type:
Creator:
Caolan McNamara
Created:
2007-08-13 09:14:36 UTC
Size:
1.24 KB
patch
obsolete
>? unxlngx6.pro >Index: source/zipapi/ZipFile.cxx >=================================================================== >RCS file: /cvs/xml/package/source/zipapi/ZipFile.cxx,v >retrieving revision 1.46 >diff -u -r1.46 ZipFile.cxx >--- source/zipapi/ZipFile.cxx 3 Apr 2007 14:08:01 -0000 1.46 >+++ source/zipapi/ZipFile.cxx 13 Aug 2007 09:11:59 -0000 >@@ -789,13 +789,13 @@ > aEntry.nOffset += nLocPos; > aEntry.nOffset *= -1; > >- if ( aEntry.nNameLen > ZIP_MAXNAMELEN ) >+ if ( aEntry.nNameLen < 0 || aEntry.nNameLen > ZIP_MAXNAMELEN ) > throw ZipException( OUString( RTL_CONSTASCII_USTRINGPARAM ( "name length exceeds ZIP_MAXNAMELEN bytes" ) ), Reference < XInterface > () ); > >- if ( nCommentLen > ZIP_MAXNAMELEN ) >+ if ( nCommentLen < 0 || nCommentLen > ZIP_MAXNAMELEN ) > throw ZipException( OUString( RTL_CONSTASCII_USTRINGPARAM ( "comment length exceeds ZIP_MAXNAMELEN bytes" ) ), Reference < XInterface > () ); > >- if ( aEntry.nExtraLen > ZIP_MAXEXTRA ) >+ if ( aEntry.nExtraLen < 0 || aEntry.nExtraLen > ZIP_MAXEXTRA ) > throw ZipException( OUString( RTL_CONSTASCII_USTRINGPARAM ( "extra header info exceeds ZIP_MAXEXTRA bytes") ), Reference < XInterface > () ); > > aEntry.sName = rtl::OUString::intern ( (sal_Char *) aMemGrabber.getCurrentPos(),
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 251717
: 161161