diff options
author | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-02-27 11:26:06 +0200 |
---|---|---|
committer | Alexey Kopytov <Alexey.Kopytov@sun.com> | 2009-02-27 11:26:06 +0200 |
commit | 752cbab9a4c553871cab9e5fdb8968019617cc28 (patch) | |
tree | ede7660d1ce7a18f7267f3cd27a0fff7cbcc8675 /sql-common | |
parent | d16c7dd1829e7dcfa2ef119fa04d090981936d09 (diff) | |
download | mariadb-git-752cbab9a4c553871cab9e5fdb8968019617cc28.tar.gz |
Fix for bug #40552: Race condition around default_directories
in load_defaults()
load_defaults(), my_search_option_files() and
my_print_default_files() utilized a global variable
containing a pointer to thread local memory. This could lead
to race conditions when those functions were called with high
concurrency.
Fixed by changing the interface of the said functions to avoid
the necessity for using a global variable.
Since we cannot change load_defaults() prototype for API
compatibility reasons, it was renamed my_load_defaults().
Now load_defaults() is a thread-unsafe wrapper around
a thread-safe version, my_load_defaults().
Diffstat (limited to 'sql-common')
-rw-r--r-- | sql-common/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-common/client.c b/sql-common/client.c index 63c746a3f5a..91a47b6a6f8 100644 --- a/sql-common/client.c +++ b/sql-common/client.c @@ -1021,7 +1021,7 @@ void mysql_read_default_options(struct st_mysql_options *options, argc=1; argv=argv_buff; argv_buff[0]= (char*) "client"; groups[0]= (char*) "client"; groups[1]= (char*) group; groups[2]=0; - load_defaults(filename, groups, &argc, &argv); + my_load_defaults(filename, groups, &argc, &argv, NULL); if (argc != 1) /* If some default option */ { char **option=argv; |