Fixed realloc for increasing tempRels list.

This commit is contained in:
Vadim B. Mikheev 1996-12-31 06:58:27 +00:00
parent ae753b86b5
commit 7266928e77
1 changed files with 3 additions and 2 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.8 1996/11/10 02:59:25 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.9 1996/12/31 06:58:27 vadim Exp $
*
* INTERFACE ROUTINES
* heap_creatr() - Create an uncataloged heap relation
@ -1392,7 +1392,8 @@ AddToTempRelList(Relation r)
if (tempRels->num == tempRels->size) {
tempRels->size += TEMP_REL_LIST_SIZE;
tempRels->rels = realloc(tempRels->rels, tempRels->size);
tempRels->rels = realloc(tempRels->rels,
sizeof(Relation) * tempRels->size);
}
tempRels->rels[tempRels->num] = r;
tempRels->num++;