diff options
author | Pierre-André Jacquod <pjacquod@alumni.ethz.ch> | 2011-09-04 21:47:35 +0200 |
---|---|---|
committer | Pierre-André Jacquod <pjacquod@alumni.ethz.ch> | 2011-09-06 22:43:34 +0200 |
commit | 3d411ec522dfb13924da5dadb28883d33f8e5794 (patch) | |
tree | f410b43265fec19fb47435945ffe9927b87fae96 /connectivity | |
parent | 899e9848cfa7c3a6f649f362acee53a4057768be (diff) |
[cppchecker] unread Variable warning suppressed
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/dbase/DNoException.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/connectivity/source/drivers/dbase/DNoException.cxx b/connectivity/source/drivers/dbase/DNoException.cxx index 357b2baad44a..2db5bc8505f5 100644 --- a/connectivity/source/drivers/dbase/DNoException.cxx +++ b/connectivity/source/drivers/dbase/DNoException.cxx @@ -130,7 +130,6 @@ End: sal_Bool ODbaseTable::ReadMemo(sal_uIntPtr nBlockNo, ORowSetValue& aVariable) { RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "dbase", "Ocke.Janssen@sun.com", "ODbaseTable::ReadMemo" ); - bool bIsText = true; m_pMemoStream->Seek(nBlockNo * m_aMemoHeader.db_size); switch (m_aMemoHeader.db_typ) @@ -173,8 +172,6 @@ sal_Bool ODbaseTable::ReadMemo(sal_uIntPtr nBlockNo, ORowSetValue& aVariable) { return sal_False; } - - bIsText = sHeader[3] != 0; } else if (((sal_uInt8)sHeader[0]) != 0xFF || ((sal_uInt8)sHeader[1]) != 0xFF || ((sal_uInt8)sHeader[2]) != 0x08) { |