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
4cc808b7
Commit
4cc808b7
authored
Aug 06, 2007
by
kostja@bodhi.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix "db_cl_altered might be used uninitialized" warning.
parent
057ab256
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
client/mysqldump.c
client/mysqldump.c
+3
-3
No files found.
client/mysqldump.c
View file @
4cc808b7
...
@@ -1820,7 +1820,7 @@ static uint dump_events_for_db(char *db)
...
@@ -1820,7 +1820,7 @@ static uint dump_events_for_db(char *db)
MYSQL_ROW
row
,
event_list_row
;
MYSQL_ROW
row
,
event_list_row
;
char
db_cl_name
[
MY_CS_NAME_SIZE
];
char
db_cl_name
[
MY_CS_NAME_SIZE
];
int
db_cl_altered
;
int
db_cl_altered
=
FALSE
;
DBUG_ENTER
(
"dump_events_for_db"
);
DBUG_ENTER
(
"dump_events_for_db"
);
DBUG_PRINT
(
"enter"
,
(
"db: '%s'"
,
db
));
DBUG_PRINT
(
"enter"
,
(
"db: '%s'"
,
db
));
...
@@ -2005,7 +2005,7 @@ static uint dump_routines_for_db(char *db)
...
@@ -2005,7 +2005,7 @@ static uint dump_routines_for_db(char *db)
MYSQL_ROW
row
,
routine_list_row
;
MYSQL_ROW
row
,
routine_list_row
;
char
db_cl_name
[
MY_CS_NAME_SIZE
];
char
db_cl_name
[
MY_CS_NAME_SIZE
];
int
db_cl_altered
;
int
db_cl_altered
=
FALSE
;
DBUG_ENTER
(
"dump_routines_for_db"
);
DBUG_ENTER
(
"dump_routines_for_db"
);
DBUG_PRINT
(
"enter"
,
(
"db: '%s'"
,
db
));
DBUG_PRINT
(
"enter"
,
(
"db: '%s'"
,
db
));
...
@@ -2746,7 +2746,7 @@ static int dump_trigger(MYSQL_RES *show_create_trigger_rs,
...
@@ -2746,7 +2746,7 @@ static int dump_trigger(MYSQL_RES *show_create_trigger_rs,
{
{
FILE
*
sql_file
=
md_result_file
;
FILE
*
sql_file
=
md_result_file
;
MYSQL_ROW
row
;
MYSQL_ROW
row
;
int
db_cl_altered
;
int
db_cl_altered
=
FALSE
;
DBUG_ENTER
(
"dump_trigger"
);
DBUG_ENTER
(
"dump_trigger"
);
...
...
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