Commit 268eb664 authored by unknown's avatar unknown

Merge neptunus.(none):/home/msvensson/mysql/bug12258/my50-bug12258

into  neptunus.(none):/home/msvensson/mysql/mysql-5.0

parents 0ae18e48 da744703
...@@ -2170,8 +2170,9 @@ static void reset_stmt_params(Prepared_statement *stmt) ...@@ -2170,8 +2170,9 @@ static void reset_stmt_params(Prepared_statement *stmt)
client, otherwise an error message is set in THD. client, otherwise an error message is set in THD.
*/ */
void mysql_stmt_execute(THD *thd, char *packet, uint packet_length) void mysql_stmt_execute(THD *thd, char *packet_arg, uint packet_length)
{ {
uchar *packet= (uchar*)packet_arg; // GCC 4.0.1 workaround
ulong stmt_id= uint4korr(packet); ulong stmt_id= uint4korr(packet);
ulong flags= (ulong) ((uchar) packet[4]); ulong flags= (ulong) ((uchar) packet[4]);
/* Query text for binary, general or slow log, if any of them is open */ /* Query text for binary, general or slow log, if any of them is open */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment