mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Fix uninitialized variables in get_covers
This commit is contained in:
@ -678,8 +678,8 @@ get_covers(PG_FUNCTION_ARGS)
|
||||
char *cptr;
|
||||
DocRepresentation *doc;
|
||||
int pos = 0,
|
||||
p,
|
||||
q,
|
||||
p = 0,
|
||||
q = 0,
|
||||
olddwpos = 0;
|
||||
int ncover = 1;
|
||||
|
||||
|
Reference in New Issue
Block a user