diff options
| author | Peter Eisentraut | 2012-07-16 19:15:03 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2012-07-16 19:15:03 +0000 |
| commit | dd16f9480ac67ab0c6b0102d110cd5121ed9ab46 (patch) | |
| tree | f47afeb2053d2daa328047976fe9969556c40444 /src/backend/tsearch | |
| parent | a76c857eba977a91a07ab752d4811eb5734f0b5c (diff) | |
Remove unreachable code
The Solaris Studio compiler warns about these instances, unlike more
mainstream compilers such as gcc. But manual inspection showed that
the code is clearly not reachable, and we hope no worthy compiler will
complain about removing this code.
Diffstat (limited to 'src/backend/tsearch')
| -rw-r--r-- | src/backend/tsearch/dict_thesaurus.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/tsearch/dict_thesaurus.c b/src/backend/tsearch/dict_thesaurus.c index 7e641ef64f..1f52372a48 100644 --- a/src/backend/tsearch/dict_thesaurus.c +++ b/src/backend/tsearch/dict_thesaurus.c @@ -744,8 +744,6 @@ findVariant(LexemeInfo *in, LexemeInfo *stored, uint16 curpos, LexemeInfo **newi for (i = 0; i < newn; i++) newin[i] = newin[i]->nextentry; } - - return NULL; } static TSLexeme * |
