mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Code cleanup
client/mysql.cc: Don't call mysql_close() on not initialized object sql/field.cc: code cleanup
This commit is contained in:
parent
fd3235dcd3
commit
6b1e06e620
2 changed files with 6 additions and 3 deletions
|
@ -2228,8 +2228,11 @@ static int
|
|||
sql_real_connect(char *host,char *database,char *user,char *password,
|
||||
uint silent)
|
||||
{
|
||||
mysql_close(&mysql);
|
||||
connected= 0;
|
||||
if (connected)
|
||||
{
|
||||
connected= 0;
|
||||
mysql_close(&mysql);
|
||||
}
|
||||
mysql_init(&mysql);
|
||||
if (opt_connect_timeout)
|
||||
{
|
||||
|
|
|
@ -4721,7 +4721,7 @@ String *Field_enum::val_str(String *val_buffer __attribute__((unused)),
|
|||
{
|
||||
uint tmp=(uint) Field_enum::val_int();
|
||||
if (!tmp || tmp > typelib->count)
|
||||
val_ptr->set((const char*)"",0);
|
||||
val_ptr->set("",0);
|
||||
else
|
||||
val_ptr->set((const char*) typelib->type_names[tmp-1],
|
||||
(uint) strlen(typelib->type_names[tmp-1]));
|
||||
|
|
Loading…
Reference in a new issue