From: Bruce Momjian Date: Sun, 14 Mar 1999 20:17:20 +0000 (+0000) Subject: cleanup X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=a780f3d587eb19dee58f46dd5df03b0149732443;p=users%2Fbernd%2Fpostgres.git cleanup --- diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index 648822f93c..bba5018531 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -689,7 +689,7 @@ heap_formtuple(TupleDesc tupleDescriptor, len += ComputeDataSize(tupleDescriptor, value, nulls); tuple = (HeapTuple) palloc(HEAPTUPLESIZE + len); - td = tuple->t_data = (HeapTupleHeader) ((char *) tuple + HEAPTUPLESIZE);; + td = tuple->t_data = (HeapTupleHeader) ((char *) tuple + HEAPTUPLESIZE); MemSet((char *) td, 0, (int) len);