From: Andrey Hristov Date: Mon, 12 Oct 2015 16:11:20 +0000 (+0200) Subject: MNDR: X-Git-Tag: php-7.1.0alpha1~801 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f16686faa7077c75bc025657e4464d96a0df8ae6;p=php MNDR: - don't use the static function name but the hook --- diff --git a/ext/mysqlnd/mysqlnd_ps.c b/ext/mysqlnd/mysqlnd_ps.c index cc4eaedfdc..5d79216c97 100644 --- a/ext/mysqlnd/mysqlnd_ps.c +++ b/ext/mysqlnd/mysqlnd_ps.c @@ -502,7 +502,7 @@ mysqlnd_stmt_execute_parse_response(MYSQLND_STMT * const s, enum_mysqlnd_parse_e conn = stmt->conn; CONN_SET_STATE(conn, CONN_QUERY_SENT); - ret = mysqlnd_query_read_result_set_header(stmt->conn, s); + ret = stmt->conn->m->query_read_result_set_header(stmt->conn, s); if (ret == FAIL) { COPY_CLIENT_ERROR(*stmt->error_info, *conn->error_info); memset(stmt->upsert_status, 0, sizeof(*stmt->upsert_status));