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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
35dcc130
Commit
35dcc130
authored
Jul 14, 2010
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
98501767
0f3493a4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
6 deletions
+23
-6
client/mysqlshow.c
client/mysqlshow.c
+1
-2
regex/regcomp.c
regex/regcomp.c
+3
-3
scripts/mysql_secure_installation.sh
scripts/mysql_secure_installation.sh
+19
-1
No files found.
client/mysqlshow.c
View file @
35dcc130
...
...
@@ -671,8 +671,7 @@ list_fields(MYSQL *mysql,const char *db,const char *table,
char
query
[
1024
],
*
end
;
MYSQL_RES
*
result
;
MYSQL_ROW
row
;
ulong
rows
;
LINT_INIT
(
rows
);
ulong
UNINIT_VAR
(
rows
);
if
(
mysql_select_db
(
mysql
,
db
))
{
...
...
regex/regcomp.c
View file @
35dcc130
...
...
@@ -1563,13 +1563,13 @@ struct parse *p;
register
struct
re_guts
*
g
;
{
register
sop
*
scan
;
sop
*
start
;
register
sop
*
newstart
;
sop
*
UNINIT_VAR
(
start
)
;
register
sop
*
UNINIT_VAR
(
newstart
)
;
register
sopno
newlen
;
register
sop
s
;
register
char
*
cp
;
register
sopno
i
;
LINT_INIT
(
start
);
LINT_INIT
(
newstart
);
/* avoid making error situations worse */
if
(
p
->
error
!=
0
)
return
;
...
...
scripts/mysql_secure_installation.sh
View file @
35dcc130
...
...
@@ -17,6 +17,7 @@
config
=
".my.cnf.
$$
"
command
=
".mysql.
$$
"
mysql_client
=
""
trap
"interrupt"
2
...
...
@@ -37,10 +38,26 @@ prepare() {
chmod
600
$config
$command
}
find_mysql_client
()
{
for
n
in
./bin/mysql mysql
do
$n
--no-defaults
--help
>
/dev/null 2>&1
status
=
$?
if
test
$status
-eq
0
then
mysql_client
=
$n
return
fi
done
echo
"Can't find a 'mysql' client in PATH or ./bin"
exit
1
}
do_query
()
{
echo
"
$1
"
>
$command
#sed 's,^,> ,' < $command # Debugging
mysql
--defaults-file
=
$config
<
$command
$mysql_client
--defaults-file
=
$config
<
$command
return
$?
}
...
...
@@ -204,6 +221,7 @@ cleanup() {
# The actual script starts here
prepare
find_mysql_client
set_echo_compat
echo
...
...
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