mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
fix typo in ODBC code
This commit is contained in:
+1
-1
@@ -1317,7 +1317,7 @@ PHP_FUNCTION(odbc_execute)
|
||||
if (Z_STRLEN_PP(tmp) > 2 &&
|
||||
Z_STRVAL_PP(tmp)[0] == '\'' &&
|
||||
Z_STRVAL_PP(tmp)[Z_STRLEN_PP(tmp) - 1] == '\'') {
|
||||
if (strlen(tmp) != Z_STRLEN_PP(tmp)) {
|
||||
if (strlen(Z_STRVAL_PP(tmp)) != Z_STRLEN_PP(tmp)) {
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user