Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f47ffc9

Browse files
committed
Make line 159:bp = NULL, to quiet compiler
Suggested by: Randy Terbush <randy@zyzzyva.com>
1 parent c9f8bad commit f47ffc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/access/common/indextuple.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.5 1996/10/20 22:04:41 scrappy Exp $
11+
* $Header: /cvsroot/pgsql/src/backend/access/common/indextuple.c,v 1.6 1996/10/21 07:18:08 scrappy Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -156,7 +156,7 @@ fastgetiattr(IndexTuple tup,
156156
bool *isnull)
157157
{
158158
register char *tp; /* ptr to att in tuple */
159-
register char *bp; /* ptr to att in tuple */
159+
register char *bp = NULL; /* ptr to att in tuple */
160160
int slow; /* do we have to walk nulls? */
161161
register int data_off; /* tuple data offset */
162162

0 commit comments

Comments
 (0)