diff options
author | unknown <monty@mashka.mysql.fi> | 2002-11-28 11:29:35 +0200 |
---|---|---|
committer | unknown <monty@mashka.mysql.fi> | 2002-11-28 11:29:35 +0200 |
commit | 9da6fc8d727d807d95cb090ce6e40fecd1584b22 (patch) | |
tree | 6230a34e39ed03c45ff099dc65eed9d3c56d132c | |
parent | ef75fee21263b84a3b481b799c8d2486f730ecda (diff) | |
parent | 7642ff837dd8331e06363b80af4a44143fffb142 (diff) | |
download | mariadb-git-9da6fc8d727d807d95cb090ce6e40fecd1584b22.tar.gz |
Merge work:/home/bk/mysql-4.1 into mashka.mysql.fi:/home/my/mysql-4.1
libmysql/libmysql.c:
Auto merged
-rw-r--r-- | libmysql/libmysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index 352ac520fed..94a32477c83 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -4199,7 +4199,7 @@ mysql_send_long_data(MYSQL_STMT *stmt, uint param_number, static void fetch_result_tinyint(MYSQL_BIND *param, uchar **row) { *param->buffer= (uchar) **row; - *row++; + (*row)++; } static void fetch_result_short(MYSQL_BIND *param, uchar **row) |