To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=82985
Issue #|82985
Summary|WaE on 64bit Linux: unotools
Component|utilities
Version|680m234
Platform|Opteron/x86_64
URL|
OS/Version|Linux
Status|NEW
Status whiteboard|
Keywords|
Resolution|
Issue type|PATCH
Priority|P3
Subcomponent|code
Assigned to|kso
Reported by|pjanik
------- Additional comments from [EMAIL PROTECTED] Thu Oct 25 19:16:29 +0000
2007 -------
Hi,
on 64bit Linux:
/home/oo/BuildDir/ooo_SRC680_m234_src/unotools/source/ucbhelper/ucblockbytes.cxx:
In member
function 'virtual ErrCode utl::UcbLockBytes::ReadAt(ULONG, void*, ULONG,
ULONG*) const':
/home/oo/BuildDir/ooo_SRC680_m234_src/unotools/source/ucbhelper/ucblockbytes.cxx:1542:
warning: comparison between signed and unsigned integer expressions
The fix is simple:
diff -ur ooo_SRC680_m233_src.orig/unotools/source/ucbhelper/ucblockbytes.cxx
ooo_SRC680_m233_src/unotools/source/ucbhelper/ucblockbytes.cxx
--- ooo_SRC680_m233_src.orig/unotools/source/ucbhelper/ucblockbytes.cxx
2007-10-13 11:42:33.000000000 +0200
+++ ooo_SRC680_m233_src/unotools/source/ucbhelper/ucblockbytes.cxx
2007-10-13 11:44:01.000000000 +0200
@@ -1538,7 +1538,7 @@
{
if ( !m_bTerminated && !IsSynchronMode() )
{
- sal_Int64 nLen = xSeekable->getLength();
+ sal_uInt64 nLen = xSeekable->getLength();
if ( nPos + nCount > nLen )
return ERRCODE_IO_PENDING;
}
---------------------------------------------------------------------
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]