mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
Fix compiler warning "res may be used uninitialized in this function".
Actually, it can't but some compilers are not smart enough. Per Peter Eisentraut gripe.
This commit is contained in:
parent
8b4da40487
commit
26e6c896c9
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.18 2008/11/17 12:17:09 teodor Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.19 2008/11/19 10:23:21 teodor Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -812,7 +812,7 @@ insertStatEntry(MemoryContext persistentContext, TSVectorStat *stat, TSVector tx
|
||||
StatEntry *node = stat->root,
|
||||
*pnode=NULL;
|
||||
int n,
|
||||
res;
|
||||
res = 0;
|
||||
uint32 depth=1;
|
||||
|
||||
if (stat->weight == 0)
|
||||
|
Loading…
Reference in New Issue
Block a user