mirror of
https://github.com/postgres/postgres.git
synced 2025-09-09 13:09:39 +03:00
Make line 159:bp = NULL, to quiet compiler
Suggested by: Randy Terbush <randy@zyzzyva.com>
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* 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)
|
bool *isnull)
|
||||||
{
|
{
|
||||||
register char *tp; /* ptr to att in tuple */
|
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? */
|
int slow; /* do we have to walk nulls? */
|
||||||
register int data_off; /* tuple data offset */
|
register int data_off; /* tuple data offset */
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user