Skip to content

Commit

Permalink
updated README
Browse files Browse the repository at this point in the history
  • Loading branch information
9EOR9 committed Jan 15, 2018
1 parent ddcb21c commit c066666
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
5 changes: 0 additions & 5 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@ and PHP's mysqlnd extension.
This product includes PHP software, freely available from
<http://www.php.net/software/>

The following are the main known limitations:

- double to string conversion for prepared statements
doesn't work correctly

If you want to be part of this development effort, you can discuss this at
maria-developers@lists.launchpad.org.

Expand Down
4 changes: 2 additions & 2 deletions libmariadb/mariadb_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -2052,9 +2052,9 @@ int mthd_my_read_query_result(MYSQL *mysql)
pos=(uchar*) mysql->net.read_pos;
if ((field_count= net_field_length(&pos)) == 0)
{
size_t item_len;
size_t item_len= 0;
mysql->affected_rows= net_field_length_ll(&pos);
mysql->insert_id= net_field_length_ll(&pos);
mysql->insert_id= net_field_length_ll(&pos);
mysql->server_status=uint2korr(pos);
pos+=2;
mysql->warning_count=uint2korr(pos);
Expand Down

0 comments on commit c066666

Please sign in to comment.