From 7713b70d1fe4d89af8dc880647b3c689e570e6de Mon Sep 17 00:00:00 2001 From: David Puglielli Date: Wed, 27 Sep 2017 17:50:20 -0700 Subject: [PATCH] Fixed typos again --- source/pdo_sqlsrv/pdo_stmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/pdo_sqlsrv/pdo_stmt.cpp b/source/pdo_sqlsrv/pdo_stmt.cpp index 7fac6259..e75d0060 100644 --- a/source/pdo_sqlsrv/pdo_stmt.cpp +++ b/source/pdo_sqlsrv/pdo_stmt.cpp @@ -1079,7 +1079,7 @@ int pdo_sqlsrv_stmt_next_rowset( _Inout_ pdo_stmt_t *stmt TSRMLS_DC ) // In that case, however, core_sqlsrv_has_any_result would return false if we are at // the end of a non-null result set, so we check for that error first to make sure the // user gets the correct error message. - CHECK_CUSTOM_ERROR( stmt->past_next_result_end, driver_stmt, SQLSRV_ERROR_NEXT_RESULT_PAST_END ) { + CHECK_CUSTOM_ERROR( driver_stmt->past_next_result_end, driver_stmt, SQLSRV_ERROR_NEXT_RESULT_PAST_END ) { throw core::CoreException(); }