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 147212 Details for
Bug 226966
CVE-2007-0238 StarCalc overflow
[?]
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 for 2
2.X.series.patch (text/plain), 942 bytes, created by
Mark J. Cox
on 2007-02-02 11:26:57 UTC
(
hide
)
Description:
Patch for 2
Filename:
MIME Type:
Creator:
Mark J. Cox
Created:
2007-02-02 11:26:57 UTC
Size:
942 bytes
patch
obsolete
>Index: source/filter/starcalc/scflt.cxx >=================================================================== >RCS file: /cvs/sc/sc/source/filter/starcalc/scflt.cxx,v >retrieving revision 1.16 >retrieving revision 1.16.80.1 >diff -u -r1.16 -r1.16.80.1 >--- source/filter/starcalc/scflt.cxx 5 Oct 2006 16:21:16 -0000 1.16 >+++ source/filter/starcalc/scflt.cxx 24 Jan 2007 13:35:23 -0000 1.16.80.1 >@@ -1770,12 +1770,13 @@ > rStream >> NoteLen; > if (NoteLen != 0) > { >- sal_Char Note[4096]; >- rStream.Read(Note, NoteLen); >- Note[NoteLen] = 0; >- String aText( SC10TOSTRING(Note)); >- ScPostIt aNote(aText, pDoc); >+ sal_Char* pNote = new sal_Char[NoteLen+1]; >+ rStream.Read(pNote, NoteLen); >+ pNote[NoteLen] = 0; >+ String aText( SC10TOSTRING(pNote)); >+ ScPostIt aNote(aText, pDoc); > pDoc->SetNote(Col, static_cast<SCROW> (Row), Tab, aNote ); >+ delete [] pNote; > } > } > pPrgrsBar->Progress();
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 226966
:
147211
| 147212