From: Marc G. Fournier Date: Mon, 21 Oct 1996 07:18:08 +0000 (+0000) Subject: Make line 159:bp = NULL, to quiet compiler X-Git-Tag: REL2_0~385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f47ffc9a4e00169072d5ac8208d5625a9d8da3d0;p=postgresql Make line 159:bp = NULL, to quiet compiler Suggested by: Randy Terbush --- diff --git a/src/backend/access/common/indextuple.c b/src/backend/access/common/indextuple.c index fbac15b4de..b8bfe52377 100644 --- a/src/backend/access/common/indextuple.c +++ b/src/backend/access/common/indextuple.c @@ -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 */