Fix incorrect function/method names in DBG_ENTER() (#11554)

This commit is contained in:
Yurun 2023-06-29 20:13:55 +08:00 committed by GitHub
parent ee4ebab5a9
commit 071bf46573
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View file

@ -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);
}