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
f801ca68
Commit
f801ca68
authored
Jul 09, 2010
by
Davi Arnaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use UNINIT_VAR workaround instead of LINT_INIT.
parent
52d5941b
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
client/mysqlshow.c
client/mysqlshow.c
+1
-2
regex/regcomp.c
regex/regcomp.c
+3
-3
No files found.
client/mysqlshow.c
View file @
f801ca68
...
...
@@ -669,8 +669,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 @
f801ca68
...
...
@@ -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
;
...
...
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