mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix incorrect function/method names in DBG_ENTER() (#11554)
This commit is contained in:
parent
ee4ebab5a9
commit
071bf46573
3 changed files with 5 additions and 5 deletions
|
@ -1315,7 +1315,7 @@ MYSQLND_METHOD(mysqlnd_stmt, bind_one_result)(MYSQLND_STMT * const s, unsigned i
|
|||
MYSQLND_STMT_DATA * stmt = s? s->data : NULL;
|
||||
MYSQLND_CONN_DATA * conn = stmt? stmt->conn : NULL;
|
||||
|
||||
DBG_ENTER("mysqlnd_stmt::bind_result");
|
||||
DBG_ENTER("mysqlnd_stmt::bind_one_result");
|
||||
if (!stmt || !conn) {
|
||||
DBG_RETURN(FAIL);
|
||||
}
|
||||
|
@ -1578,7 +1578,7 @@ MYSQLND_METHOD(mysqlnd_stmt, attr_get)(const MYSQLND_STMT * const s,
|
|||
void * const value)
|
||||
{
|
||||
MYSQLND_STMT_DATA * stmt = s? s->data : NULL;
|
||||
DBG_ENTER("mysqlnd_stmt::attr_set");
|
||||
DBG_ENTER("mysqlnd_stmt::attr_get");
|
||||
if (!stmt) {
|
||||
DBG_RETURN(FAIL);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue