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
4dc0aeb7
Commit
4dc0aeb7
authored
Nov 20, 2006
by
msvensson@shellback.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge shellback.(none):/home/msvensson/mysql/mysql-4.1-maint
into shellback.(none):/home/msvensson/mysql/mysql-5.0-maint
parents
147eaa3c
3b57cf0f
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
3 deletions
+11
-3
client/mysqltest.c
client/mysqltest.c
+11
-3
No files found.
client/mysqltest.c
View file @
4dc0aeb7
...
@@ -4138,8 +4138,9 @@ void init_win_path_patterns()
...
@@ -4138,8 +4138,9 @@ void init_win_path_patterns()
/* List of string patterns to match in order to find paths */
/* List of string patterns to match in order to find paths */
const
char
*
paths
[]
=
{
"$MYSQL_TEST_DIR"
,
const
char
*
paths
[]
=
{
"$MYSQL_TEST_DIR"
,
"$MYSQL_TMP_DIR"
,
"$MYSQL_TMP_DIR"
,
"./test/"
,
0
};
"$MYSQLTEST_VARDIR"
,
int
num_paths
=
3
;
"./test/"
};
int
num_paths
=
sizeof
(
paths
)
/
sizeof
(
char
*
),
int
i
;
int
i
;
char
*
p
;
char
*
p
;
...
@@ -4159,6 +4160,13 @@ void init_win_path_patterns()
...
@@ -4159,6 +4160,13 @@ void init_win_path_patterns()
else
else
p
=
my_strdup
(
paths
[
i
],
MYF
(
MY_FAE
));
p
=
my_strdup
(
paths
[
i
],
MYF
(
MY_FAE
));
/* Don't insert zero length strings in patterns array */
if
(
strlen
(
p
)
==
0
)
{
my_free
(
p
,
MYF
(
0
));
continue
;
}
if
(
insert_dynamic
(
&
patterns
,
(
gptr
)
&
p
))
if
(
insert_dynamic
(
&
patterns
,
(
gptr
)
&
p
))
die
(
NullS
);
die
(
NullS
);
...
@@ -4208,7 +4216,7 @@ void fix_win_paths(const char *val, int len)
...
@@ -4208,7 +4216,7 @@ void fix_win_paths(const char *val, int len)
{
{
const
char
**
pattern
=
dynamic_element
(
&
patterns
,
i
,
const
char
**
);
const
char
**
pattern
=
dynamic_element
(
&
patterns
,
i
,
const
char
**
);
DBUG_PRINT
(
"info"
,
(
"pattern: %s"
,
*
pattern
));
DBUG_PRINT
(
"info"
,
(
"pattern: %s"
,
*
pattern
));
if
(
strlen
(
*
pattern
)
==
0
)
continue
;
/* Search for the path in string */
/* Search for the path in string */
while
((
p
=
strstr
(
val
,
*
pattern
)))
while
((
p
=
strstr
(
val
,
*
pattern
)))
{
{
...
...
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