mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Bug #17049656 : MYSQLD --LOCAL-SERVICE PARAMETER DOES NOT WORK
Problem: The "--local-install" service does not perform as expected for, at least, Windows. Fix: A NULL pointer was dereferenced due to which there was crash.A check was introduced for NULL string before dereferencing it.No test cases written as it is a bug during installation.
This commit is contained in:
parent
e0efc2c39a
commit
e9854f5826
1 changed files with 1 additions and 1 deletions
|
@ -4786,7 +4786,7 @@ default_service_handling(char **argv,
|
|||
|
||||
/* We have to quote filename if it contains spaces */
|
||||
pos= add_quoted_string(path_and_service, file_path, end);
|
||||
if (*extra_opt)
|
||||
if (extra_opt && *extra_opt)
|
||||
{
|
||||
/*
|
||||
Add option after file_path. There will be zero or one extra option. It's
|
||||
|
|
Loading…
Reference in a new issue