diff options
author | knielsen@mysql.com <> | 2006-05-15 18:07:18 +0200 |
---|---|---|
committer | knielsen@mysql.com <> | 2006-05-15 18:07:18 +0200 |
commit | fc16aff7423eff1eb52fcd2522b3454fa8748c70 (patch) | |
tree | c90b581837f256bc8b3e0cb47cafcb159c99a19f /libmysql | |
parent | f071779791d2bae55a03a6f2e158907a1f40ae5e (diff) | |
download | mariadb-git-fc16aff7423eff1eb52fcd2522b3454fa8748c70.tar.gz |
Fix two Valgrind memory leak warnings.
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/libmysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysql/libmysql.c b/libmysql/libmysql.c index bfec476fde3..511c40c4335 100644 --- a/libmysql/libmysql.c +++ b/libmysql/libmysql.c @@ -178,7 +178,7 @@ void STDCALL mysql_server_end() /* If library called my_init(), free memory allocated by it */ if (!org_my_init_done) { - my_end(0); + my_end(MY_DONT_FREE_DBUG); #ifndef THREAD /* Remove TRACING, if enabled by mysql_debug() */ DBUG_POP(); |