mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 06:37:06 -04:00
Fix uninitialized variables in get_covers
This commit is contained in:
parent
b7394a6e6e
commit
473b40d23e
1 changed files with 2 additions and 2 deletions
|
|
@ -680,8 +680,8 @@ get_covers(PG_FUNCTION_ARGS)
|
|||
char *cptr;
|
||||
DocRepresentation *doc;
|
||||
int pos = 0,
|
||||
p,
|
||||
q,
|
||||
p = 0,
|
||||
q = 0,
|
||||
olddwpos = 0;
|
||||
int ncover = 1;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue