summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2006-11-21 15:59:57 +0000
committerVladimir Glazounov <vg@openoffice.org>2006-11-21 15:59:57 +0000
commitd511efe9ab094178e0787d74cac634e0a7caa592 (patch)
tree8489ad8047f259117ba2fa0f97ae6bc112b23827
parent2aff2c4ccf705a582d953c92d7c21094f21348bd (diff)
INTEGRATION: CWS pj65 (1.98.30); FILE MERGED
2006/10/31 14:07:13 pjanik 1.98.30.1: #i71027#: prevent warnings on Mac OS X with gcc 4.0.1.
-rw-r--r--connectivity/source/drivers/dbase/DTable.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/connectivity/source/drivers/dbase/DTable.cxx b/connectivity/source/drivers/dbase/DTable.cxx
index 0bd645742ba0..63e9b4d4a800 100644
--- a/connectivity/source/drivers/dbase/DTable.cxx
+++ b/connectivity/source/drivers/dbase/DTable.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: DTable.cxx,v $
*
- * $Revision: 1.98 $
+ * $Revision: 1.99 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 02:23:49 $
+ * last change: $Author: vg $ $Date: 2006-11-21 16:59:57 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -656,8 +656,8 @@ sal_Bool ODbaseTable::fetchRow(OValueRefRow& _rRow,const OSQLColumns & _rCols, s
for (sal_Size i = 1; aIter != _rCols.end() && nByteOffset <= m_nBufferSize && i < _rRow->size();++aIter, i++)
{
// Laengen je nach Datentyp:
- sal_Int32 nLen;
- sal_Int32 nType;
+ sal_Int32 nLen = 0;
+ sal_Int32 nType = 0;
if(_bUseTableDefs)
{
nLen = m_aPrecisions[i-1];