1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Don't use the MYSQL* returned from mysql_real_connect to overwrite the already initalised mysql variable

This commit is contained in:
msvensson@neptunus.(none)
2006-04-11 20:49:31 +02:00
parent c1e9bb8dea
commit c8c8041804

View File

@@ -1132,11 +1132,11 @@ run_task(thread_context *con)
my_lock(lock_file, F_RDLCK, 0, F_TO_EOF, MYF(0));
if (!opt_only_print)
{
if (!(mysql= mysql_real_connect(mysql, host, user, opt_password,
create_schema_string,
opt_mysql_port,
opt_mysql_unix_port,
0)))
if (!(mysql_real_connect(mysql, host, user, opt_password,
create_schema_string,
opt_mysql_port,
opt_mysql_unix_port,
0)))
{
fprintf(stderr,"%s: %s\n",my_progname,mysql_error(mysql));
goto end;