diff options
author | Konstantin Osipov <kostja@sun.com> | 2010-03-11 16:47:34 +0300 |
---|---|---|
committer | Konstantin Osipov <kostja@sun.com> | 2010-03-11 16:47:34 +0300 |
commit | 42b7812898540b06f2705ab6533289f5503e9687 (patch) | |
tree | dff45833e872a01ba6555a085f891ee5ccacca1b /tests | |
parent | b7a5c1b32987fce0db44d5cc532de775fb3375e7 (diff) | |
download | mariadb-git-42b7812898540b06f2705ab6533289f5503e9687.tar.gz |
A fix for Bug#49972 "Crash in prepared statements":
The problem is introduced by WL#4435 "Support OUT-parameters in
prepared statements".
When a statement that has out parameters was reprepared,
the reprepare request error was ignored, and an
attempt to send out parameters to the client was made.
Since the out parameter list was not initialized in case
of an error, this attempt led to a crash.
Don't try to send out parameters to the client
if an error occurred in statement execution.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/mysql_client_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/mysql_client_test.c b/tests/mysql_client_test.c index 8f4c44e2c82..8112a2a3c0d 100644 --- a/tests/mysql_client_test.c +++ b/tests/mysql_client_test.c @@ -19373,7 +19373,7 @@ static struct my_tests_st my_tests[]= { #endif { "test_bug41078", test_bug41078 }, { "test_bug44495", test_bug44495 }, - /* XXX { "test_bug49972", test_bug49972 }, */ + { "test_bug49972", test_bug49972 }, { 0, 0 } }; |