connectivity/source/drivers/odbc/OStatement.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 87c603c2346b5835741a41151420f69b9aaeead8
Author:     Simon Chenery <simon_chen...@yahoo.com>
AuthorDate: Mon Apr 28 20:03:32 2025 +0200
Commit:     David Gilbert <freedesk...@treblig.org>
CommitDate: Wed May 14 22:51:45 2025 +0200

    Fix OSL_ENSURE "Should be null here!" warning message in OStatement.cxx
    
    Change-Id: I785f1c406ac1799c1b4ca2508d441185ef80f1c3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184730
    Tested-by: Jenkins
    Reviewed-by: David Gilbert <freedesk...@treblig.org>

diff --git a/connectivity/source/drivers/odbc/OStatement.cxx 
b/connectivity/source/drivers/odbc/OStatement.cxx
index 895bfa59dc60..989db77ce462 100644
--- a/connectivity/source/drivers/odbc/OStatement.cxx
+++ b/connectivity/source/drivers/odbc/OStatement.cxx
@@ -77,7 +77,7 @@ OStatement_Base::OStatement_Base(OConnection* _pConnection )
 
 OStatement_Base::~OStatement_Base()
 {
-    OSL_ENSURE(!m_aStatementHandle,"Sohould ne null here!");
+    OSL_ENSURE(!m_aStatementHandle,"Should be null here!");
 }
 
 void OStatement_Base::disposeResultSet()
@@ -104,7 +104,7 @@ void SAL_CALL OStatement_Base::disposing()
         m_pConnection->freeStatementHandle(m_aStatementHandle);
         m_pConnection.clear();
     }
-    OSL_ENSURE(!m_aStatementHandle,"Sohould ne null here!");
+    OSL_ENSURE(!m_aStatementHandle,"Should be null here!");
 
     OStatement_BASE::disposing();
 }

Reply via email to