diff options
author | hf@deer.(none) <> | 2004-07-22 20:54:25 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2004-07-22 20:54:25 +0500 |
commit | 94bfeb839399486eb90f2fc5dd25cdb4761d71bd (patch) | |
tree | ecfe787be62082cf510021730f7750916b699945 /libmysql | |
parent | 5eadafe56960a5df27007ae382c1c5445cc1ed9a (diff) | |
download | mariadb-git-94bfeb839399486eb90f2fc5dd25cdb4761d71bd.tar.gz |
Fixes for bugs in embedded library:
#4700 (Unsigned value returned as signed)
just no appropriate checking
#4701 (Errors returned earlier than expected)
all errors returned from send_command()
#4702 (Result isn't freed properly if there's no retrieval)
flush_use_result has only 'client' version and should
be made 'virtual'
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/libmysql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index fc7728c98e0..2b67d645d1a 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -4181,7 +4181,7 @@ my_bool STDCALL mysql_stmt_free_result(MYSQL_STMT *stmt) if (mysql->status != MYSQL_STATUS_READY) { /* There is a result set and it belongs to this statement */ - flush_use_result(mysql); + (*mysql->methods->flush_use_result)(mysql); mysql->status= MYSQL_STATUS_READY; } } @@ -4231,7 +4231,7 @@ my_bool STDCALL mysql_stmt_close(MYSQL_STMT *stmt) Flush result set of the connection. If it does not belong to this statement, set a warning. */ - flush_use_result(mysql); + (*mysql->methods->flush_use_result)(mysql); if (mysql->unbuffered_fetch_owner) *mysql->unbuffered_fetch_owner= TRUE; mysql->status= MYSQL_STATUS_READY; |