Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
6bb288b6
Commit
6bb288b6
authored
Dec 14, 2007
by
iggy@amd64.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#26811 Symbolic links don't work in Windows Vista
- Enable check for symbolic link files.
parent
8105bd46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
sql/sql_table.cc
sql/sql_table.cc
+6
-1
No files found.
sql/sql_table.cc
View file @
6bb288b6
...
...
@@ -207,7 +207,12 @@ uint build_table_filename(char *buff, size_t bufflen, const char *db,
if
(
pos
-
rootdir_len
>=
buff
&&
memcmp
(
pos
-
rootdir_len
,
FN_ROOTDIR
,
rootdir_len
)
!=
0
)
pos
=
strnmov
(
pos
,
FN_ROOTDIR
,
end
-
pos
);
pos
=
strxnmov
(
pos
,
end
-
pos
,
dbbuff
,
FN_ROOTDIR
,
tbbuff
,
ext
,
NullS
);
pos
=
strxnmov
(
pos
,
end
-
pos
,
dbbuff
,
FN_ROOTDIR
,
NullS
);
#ifdef USE_SYMDIR
unpack_dirname
(
buff
,
buff
);
pos
=
strend
(
buff
);
#endif
pos
=
strxnmov
(
pos
,
end
-
pos
,
tbbuff
,
ext
,
NullS
);
DBUG_PRINT
(
"exit"
,
(
"buff: '%s'"
,
buff
));
DBUG_RETURN
(
pos
-
buff
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment