mirror of
https://github.com/zebrajr/postgres.git
synced 2025-12-07 12:20:31 +01:00
Fix uninitialized variables in get_covers
This commit is contained in:
parent
e0408ba3d5
commit
d01bcba483
|
|
@ -678,8 +678,8 @@ get_covers(PG_FUNCTION_ARGS)
|
||||||
char *cptr;
|
char *cptr;
|
||||||
DocRepresentation *doc;
|
DocRepresentation *doc;
|
||||||
int pos = 0,
|
int pos = 0,
|
||||||
p,
|
p = 0,
|
||||||
q,
|
q = 0,
|
||||||
olddwpos = 0;
|
olddwpos = 0;
|
||||||
int ncover = 1;
|
int ncover = 1;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user