]> granicus.if.org Git - postgresql/commitdiff
Remove duplicate variable initializations identified by clang static checker.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 30 Aug 2009 16:53:31 +0000 (16:53 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 30 Aug 2009 16:53:31 +0000 (16:53 +0000)
One of these represents a nontrivial bug (a promptly-leaked palloc), so
backpatch.

Greg Stark

src/backend/tsearch/regis.c
src/backend/tsearch/ts_parse.c
src/backend/utils/adt/encode.c

index 4b71872dcf37fd81e7574a925b3d1c347f059f22..2639957ee53f25a8f63ace08a2aaf337690fe445 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/tsearch/regis.c,v 1.7 2009/06/11 14:49:03 momjian Exp $
+ *       $PostgreSQL: pgsql/src/backend/tsearch/regis.c,v 1.8 2009/08/30 16:53:31 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -182,7 +182,7 @@ RS_free(Regis *r)
 static bool
 mb_strchr(char *str, char *c)
 {
-       int                     clen = pg_mblen(c),
+       int                     clen,
                                plen,
                                i;
        char       *ptr = str;
index e895761836b7cd9169e2f6c844edee90908421cf..676757c8f3b7f2f5d9da82a46d1b3267099e214a 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/tsearch/ts_parse.c,v 1.14 2009/08/18 10:30:41 teodor Exp $
+ *       $PostgreSQL: pgsql/src/backend/tsearch/ts_parse.c,v 1.15 2009/08/30 16:53:31 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -101,7 +101,6 @@ LexizeAddLemm(LexizeData *ld, int type, char *lemm, int lenlemm)
 {
        ParsedLex  *newpl = (ParsedLex *) palloc(sizeof(ParsedLex));
 
-       newpl = (ParsedLex *) palloc(sizeof(ParsedLex));
        newpl->type = type;
        newpl->lemm = lemm;
        newpl->lenlemm = lenlemm;
index e581e3bc42dfecd2f2940a4a7f6f1f9ea88a011e..c27daa27c2cf5012f4031e8b8c89dd67d1e852be 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $PostgreSQL: pgsql/src/backend/utils/adt/encode.c,v 1.24 2009/08/04 16:08:36 tgl Exp $
+ *       $PostgreSQL: pgsql/src/backend/utils/adt/encode.c,v 1.25 2009/08/30 16:53:31 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -159,7 +159,7 @@ hex_decode(const char *src, unsigned len, char *dst)
                           *srcend;
        char            v1,
                                v2,
-                          *p = dst;
+                          *p;
 
        srcend = src + len;
        s = src;