summaryrefslogtreecommitdiff
path: root/mysys/my_init.c
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2001-12-05 23:15:05 +0200
committermonty@hundin.mysql.fi <>2001-12-05 23:15:05 +0200
commit90004e340b82413d0058b9eaebb4d776938aa00f (patch)
tree07de775d0327927eb8a4c4d3cc563f212497be56 /mysys/my_init.c
parent4b513347c4c5ca72c13ec42c499d243c0dfdcd1f (diff)
downloadmariadb-git-90004e340b82413d0058b9eaebb4d776938aa00f.tar.gz
Fixed bug in LEFT JOIN
Diffstat (limited to 'mysys/my_init.c')
-rw-r--r--mysys/my_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_init.c b/mysys/my_init.c
index c3b9cecf86e..3bc87fd179d 100644
--- a/mysys/my_init.c
+++ b/mysys/my_init.c
@@ -126,6 +126,7 @@ void my_end(int infoflag)
DBUG_PRINT("error",("%s",errbuff[0]));
}
}
+ free_charsets();
if (infoflag & MY_GIVE_INFO || info_file != stderr)
{
#ifdef HAVE_GETRUSAGE
@@ -150,7 +151,6 @@ Voluntary context switches %ld, Involuntary context switches %ld\n",
#if defined(MSDOS) && !defined(__WIN__)
fprintf(info_file,"\nRun time: %.1f\n",(double) clock()/CLOCKS_PER_SEC);
#endif
- free_charsets();
#if defined(SAFEMALLOC)
TERMINATE(stderr); /* Give statistic on screen */
#elif defined(__WIN__) && defined(_MSC_VER)