Commit 3728f43c authored by unknown's avatar unknown
Browse files

Merge mysql.com:/usr/local/mysql/mysql-5.0-bug20622

into  mysql.com:/usr/local/mysql/tmp-5.0

parents 0f0e518e 0f3cc95b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -72,7 +72,9 @@ uint dirname_part(my_string to, const char *name)

  SYNPOSIS
    convert_dirname()
    to				Store result here
    to				Store result here. Must be at least of size
    				min(FN_REFLEN, strlen(from) + 1) to make room
    				for adding FN_LIBCHAR at the end.
    from			Original filename
    from_end			Pointer at end of filename (normally end \0)

+7 −2
Original line number Diff line number Diff line
@@ -391,8 +391,13 @@ int Instance_options::complete_initialization(const char *default_path,
  const char *tmp;
  char *end;

  if (!mysqld_path && !(mysqld_path= strdup_root(&alloc, default_path)))
  if (!mysqld_path)
  {
    // Need one extra byte, as convert_dirname() adds a slash at the end.
    if (!(mysqld_path= alloc_root(&alloc, strlen(default_path) + 2)))
      goto err;
    strcpy((char *)mysqld_path, default_path);
  }

  // it's safe to cast this to char* since this is a buffer we are allocating
  end= convert_dirname((char*)mysqld_path, mysqld_path, NullS);