diff options
author | guilhem@mysql.com <> | 2006-01-24 15:37:56 +0100 |
---|---|---|
committer | guilhem@mysql.com <> | 2006-01-24 15:37:56 +0100 |
commit | 9e5d951946961c297649c20ffd0709a7bf4501d9 (patch) | |
tree | a50d46e810b82e217a42f0c3918b48e00122706c /sql/parse_file.cc | |
parent | 502f3085f8ab16796ac6baa09376cc4e20b945fd (diff) | |
download | mariadb-git-9e5d951946961c297649c20ffd0709a7bf4501d9.tar.gz |
Fix for crash of "mysql-test-run --debug mysqldump": don't access dir->str if dir is null.
Diffstat (limited to 'sql/parse_file.cc')
-rw-r--r-- | sql/parse_file.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/parse_file.cc b/sql/parse_file.cc index 3cddc879825..2a602e9ba28 100644 --- a/sql/parse_file.cc +++ b/sql/parse_file.cc @@ -224,7 +224,8 @@ sql_create_definition_file(const LEX_STRING *dir, const LEX_STRING *file_name, File_option *param; DBUG_ENTER("sql_create_definition_file"); DBUG_PRINT("enter", ("Dir: %s, file: %s, base 0x%lx", - dir->str, file_name->str, (ulong) base)); + dir ? dir->str : "(null)", + file_name->str, (ulong) base)); if (dir) { |