Make line 159:bp = NULL, to quiet compiler
authorMarc G. Fournier
Mon, 21 Oct 1996 07:18:08 +0000 (07:18 +0000)
committerMarc G. Fournier
Mon, 21 Oct 1996 07:18:08 +0000 (07:18 +0000)
Suggested by: Randy Terbush 

src/backend/access/common/indextuple.c

index fbac15b4dea5ba0c849fd9e0ad0106015021b7ee..b8bfe52377edb9d6c0ac6b2e0042c417b4cc5893 100644 (file)
@@ -8,7 +8,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.5 1996/10/20 22:04:41 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.6 1996/10/21 07:18:08 scrappy Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -156,7 +156,7 @@ fastgetiattr(IndexTuple tup,
         bool *isnull)
 {
     register char      *tp;        /* ptr to att in tuple */
-    register char      *bp;        /* ptr to att in tuple */
+    register char      *bp = NULL; /* ptr to att in tuple */
     int            slow;       /* do we have to walk nulls? */
     register int       data_off;   /* tuple data offset */