File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/backend/access/common Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.49 1999/02/13 23:14:10 momjian Exp $
11
+ * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.50 1999/03/14 20:17:20 momjian Exp $
12
12
*
13
13
* NOTES
14
14
* The old interface functions have been converted to macros
@@ -689,7 +689,7 @@ heap_formtuple(TupleDesc tupleDescriptor,
689
689
len += ComputeDataSize (tupleDescriptor , value , nulls );
690
690
691
691
tuple = (HeapTuple ) palloc (HEAPTUPLESIZE + len );
692
- td = tuple -> t_data = (HeapTupleHeader ) ((char * ) tuple + HEAPTUPLESIZE );;
692
+ td = tuple -> t_data = (HeapTupleHeader ) ((char * ) tuple + HEAPTUPLESIZE );
693
693
694
694
MemSet ((char * ) td , 0 , (int ) len );
695
695
You can’t perform that action at this time.
0 commit comments