diff options
author | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-29 21:56:25 +0200 |
---|---|---|
committer | Frank Schoenheit [fs] <frank.schoenheit@sun.com> | 2010-03-29 21:56:25 +0200 |
commit | 0f305e2e2600cbe43a66a2b5942cb332e5f9bd0e (patch) | |
tree | 9f0032f11e4ed98b3386d54f075b25aee3aa071f /connectivity | |
parent | d17e846b168e1a41cb9bbad9123924499787a208 (diff) |
dba33f: added missing break (thanks to Terence Enger (400guy@openoffice.org))
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/odbcbase/OTools.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/connectivity/source/drivers/odbcbase/OTools.cxx b/connectivity/source/drivers/odbcbase/OTools.cxx index daa6d28a0acf..ceb502895caf 100644 --- a/connectivity/source/drivers/odbcbase/OTools.cxx +++ b/connectivity/source/drivers/odbcbase/OTools.cxx @@ -394,6 +394,7 @@ void OTools::bindValue( OConnection* _pConnection, case SQL_TIMESTAMP: *pLen = sizeof(TIMESTAMP_STRUCT); *((TIMESTAMP_STRUCT*)_pData) = *(TIMESTAMP_STRUCT*)_pValue; + break; } } catch ( ... ) |