1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix for CONC-46:

cleanup of my_win_init(), removed setlocale and server specific stuff
This commit is contained in:
holzboote@googlemail.com
2013-08-14 16:08:21 +02:00
parent 1182179b5c
commit bb809b33fc
2 changed files with 6 additions and 59 deletions

View File

@@ -119,9 +119,9 @@ DWORD WINAPI thread_conc27(void)
{
MYSQL *mysql;
int rc;
MYSQL_RES *res;
mysql_thread_init();
mysql= mysql_init(NULL);
MYSQL_RES *res;
if(!mysql_real_connect(mysql, hostname, username, password, schema,
port, socketname, 0))
{