Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
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
Abuhujair Javed
Postgres FD Implementation
Commits
0df7f493
Commit
0df7f493
authored
Sep 24, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up possibly-uninitialized-variable warnings reported by gcc 4.x.
parent
030d5bd9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
8 deletions
+10
-8
contrib/intarray/_int_bool.c
contrib/intarray/_int_bool.c
+2
-0
contrib/ltree/ltxtquery_io.c
contrib/ltree/ltxtquery_io.c
+4
-4
contrib/tsearch2/query.c
contrib/tsearch2/query.c
+4
-4
No files found.
contrib/intarray/_int_bool.c
View file @
0df7f493
...
...
@@ -58,6 +58,8 @@ gettoken(WORKSTATE * state, int4 *val)
char
nnn
[
16
],
*
curnnn
;
*
val
=
0
;
/* default result */
curnnn
=
nnn
;
while
(
1
)
{
...
...
contrib/ltree/ltxtquery_io.c
View file @
0df7f493
...
...
@@ -197,13 +197,13 @@ pushval_asis(QPRS_STATE * state, int type, char *strval, int lenval, uint16 flag
static
int4
makepol
(
QPRS_STATE
*
state
)
{
int4
val
,
int4
val
=
0
,
type
;
int4
lenval
;
char
*
strval
;
int4
lenval
=
0
;
char
*
strval
=
NULL
;
int4
stack
[
STACKDEPTH
];
int4
lenstack
=
0
;
uint16
flag
;
uint16
flag
=
0
;
while
((
type
=
gettoken_query
(
state
,
&
val
,
&
lenval
,
&
strval
,
&
flag
))
!=
END
)
{
...
...
contrib/tsearch2/query.c
View file @
0df7f493
...
...
@@ -317,13 +317,13 @@ pushval_morph(QPRS_STATE * state, int typeval, char *strval, int lenval, int2 we
static
int4
makepol
(
QPRS_STATE
*
state
,
void
(
*
pushval
)
(
QPRS_STATE
*
,
int
,
char
*
,
int
,
int2
))
{
int4
val
,
int4
val
=
0
,
type
;
int4
lenval
;
char
*
strval
;
int4
lenval
=
0
;
char
*
strval
=
NULL
;
int4
stack
[
STACKDEPTH
];
int4
lenstack
=
0
;
int2
weight
;
int2
weight
=
0
;
while
((
type
=
gettoken_query
(
state
,
&
val
,
&
lenval
,
&
strval
,
&
weight
))
!=
END
)
{
...
...
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