To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=80954
------- Additional comments from [EMAIL PROTECTED] Wed Aug 22 21:13:41 +0000
2007 -------
There is at least one other potential problem in compressedarray.cxx: a possible
integer overflow on line 123:
i = (nLo + nHi) / 2;
If (nLo + nHi) overflows int, `i' will be negative, resulting in a negative
array index on line 128:
nEnd = (long) pData[i].nEnd;
Line 123 should probably be:
nEnd = nLo + ((nHi - nLo) / 2);
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]