diff options
author | Chad MILLER <chad@mysql.com> | 2009-03-18 18:38:30 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-03-18 18:38:30 -0400 |
commit | 428e632f008af50742a90fa16b226067e1967247 (patch) | |
tree | 564ce91aba0af44be18014541d5231c8167a19f2 /mysys | |
parent | a41f46f5084855e9a2354fbfb18ad65ce90081ae (diff) | |
parent | 35d47c36317c46a1fd1bc7c9ea2042bd011783fe (diff) | |
download | mariadb-git-428e632f008af50742a90fa16b226067e1967247.tar.gz |
Merge bugteam and fix for 42675.
Diffstat (limited to 'mysys')
-rw-r--r-- | mysys/my_error.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/mysys/my_error.c b/mysys/my_error.c index 07656dda979..2cf704d0089 100644 --- a/mysys/my_error.c +++ b/mysys/my_error.c @@ -252,11 +252,16 @@ const char **my_error_unregister(int first, int last) void my_error_unregister_all(void) { - struct my_err_head *list, *next; - for (list= my_errmsgs_globerrs.meh_next; list; list= next) + struct my_err_head *cursor, *saved_next; + + for (cursor= my_errmsgs_globerrs.meh_next; cursor != NULL; cursor= saved_next) { - next= list->meh_next; - my_free((uchar*) list, MYF(0)); + /* We need this ptr, but we're about to free its container, so save it. */ + saved_next= cursor->meh_next; + + my_free((uchar*) cursor, MYF(0)); } + my_errmsgs_globerrs.meh_next= NULL; /* Freed in first iteration above. */ + my_errmsgs_list= &my_errmsgs_globerrs; } |