From 4674f58a15007e6527fb4ff3deff7e4252fd4b16 Mon Sep 17 00:00:00 2001 From: David Puglielli Date: Fri, 29 Sep 2017 16:18:27 -0700 Subject: [PATCH] Update stmt.cpp --- source/sqlsrv/stmt.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sqlsrv/stmt.cpp b/source/sqlsrv/stmt.cpp index 8f5abb6c..076dba1a 100644 --- a/source/sqlsrv/stmt.cpp +++ b/source/sqlsrv/stmt.cpp @@ -562,7 +562,7 @@ PHP_FUNCTION( sqlsrv_next_result ) try { // Return the correct error in case the user calls sqlsrv_next_result() on a null result set. - // Null means that SQLNumResultCols() returns 0 and SQLRowCount is not return > 0. But first + // Null means that SQLNumResultCols() returns 0 and SQLRowCount does not return > 0. But first // check that the statement has been executed and that we are not past the end of a non-null // result set to make sure the user gets the correct error message. These checks are also // done in core_sqlsrv_next_result(), but we cannot check for null results there because that