Skip to content

Commit f16686f

Browse files
committed
MNDR:
- don't use the static function name but the hook
1 parent 1944335 commit f16686f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/mysqlnd/mysqlnd_ps.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ mysqlnd_stmt_execute_parse_response(MYSQLND_STMT * const s, enum_mysqlnd_parse_e
502502
conn = stmt->conn;
503503
CONN_SET_STATE(conn, CONN_QUERY_SENT);
504504

505-
ret = mysqlnd_query_read_result_set_header(stmt->conn, s);
505+
ret = stmt->conn->m->query_read_result_set_header(stmt->conn, s);
506506
if (ret == FAIL) {
507507
COPY_CLIENT_ERROR(*stmt->error_info, *conn->error_info);
508508
memset(stmt->upsert_status, 0, sizeof(*stmt->upsert_status));

0 commit comments

Comments
 (0)