Commit 564ff2c7 authored by lenz@mysql.com's avatar lenz@mysql.com

- fixed a compile error in mysys/mf_tempdir.c by adding a missing comma

   (only showed up in a non-debug build)
parent fb82332b
......@@ -55,7 +55,7 @@ my_bool init_tmpdir(MY_TMPDIR *tmpdir, const char *pathlist)
length= cleanup_dirname(buff, buff);
if (!(copy= my_strdup_with_length(buff, length, MYF(MY_WME))) ||
insert_dynamic(&t_arr, (gptr) &copy))
DBUG_RETURN(TRUE)
DBUG_RETURN(TRUE);
pathlist=end+1;
}
while (*end);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment