diff options
author | Derick Rethans <github@derickrethans.nl> | 2012-11-13 10:10:41 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2012-11-13 10:10:41 +0000 |
commit | 1e081a825e7957286ce8df3cd7d48a9dd2a1787c (patch) | |
tree | 0947696b89521fbc4c2eecc140c7251902c4d46b /ext/mysqlnd/mysqlnd_wireprotocol.c | |
parent | 1784279be07f1ea18baff67646d9d75896cae36f (diff) | |
parent | bb60122c2fe49985b35026ecc48ff6cf550fbac1 (diff) | |
download | php-git-1e081a825e7957286ce8df3cd7d48a9dd2a1787c.tar.gz |
Merge branch 'PHP-5.3' of git.php.net:/php-src into PHP-5.3
Diffstat (limited to 'ext/mysqlnd/mysqlnd_wireprotocol.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_wireprotocol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_wireprotocol.c b/ext/mysqlnd/mysqlnd_wireprotocol.c index 1318c37a73..ec0ff496f4 100644 --- a/ext/mysqlnd/mysqlnd_wireprotocol.c +++ b/ext/mysqlnd/mysqlnd_wireprotocol.c @@ -982,7 +982,7 @@ php_mysqlnd_rset_field_read(void *_packet, MYSQLND *conn TSRMLS_DC) p += 2; BAIL_IF_NO_MORE_DATA; - meta->decimals = uint2korr(p); + meta->decimals = uint1korr(p); p += 1; BAIL_IF_NO_MORE_DATA; |