1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Minor fixes

This commit is contained in:
hf@bisonxp.(none)
2002-07-09 10:39:22 +05:00
parent 94e4fb9db4
commit bc7e8b0915
5 changed files with 11 additions and 4 deletions

View File

@@ -7309,6 +7309,6 @@ static void describe_info(THD *thd, const char *info)
return; /* purecov: inspected */
packet->length(0);
net_store_data(packet,info);
if (!my_net_write(&thd->net,(char*) packet->ptr(),packet->length()))
if (!SEND_ROW(thd, &thd->net, field_list.elements, (char*) packet->ptr(),packet->length()))
send_eof(&thd->net);
}