8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810de88 commit 0ffe9f7Copy full SHA for 0ffe9f7
src/backend/access/rtree/rtree.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/access/rtree/rtree.c,v 1.86 2005/01/18 23:25:47 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/access/rtree/rtree.c,v 1.87 2005/01/24 02:47:26 tgl Exp $
12
13
*-------------------------------------------------------------------------
14
*/
@@ -591,6 +591,8 @@ rtdosplit(Relation r,
591
rtup = (IndexTuple) index_formtuple(tupDesc,
592
&(v.spl_rdatum), isnull);
593
pfree(isnull);
594
+ pfree(DatumGetPointer(v.spl_ldatum));
595
+ pfree(DatumGetPointer(v.spl_rdatum));
596
597
/* set pointers to new child pages in the internal index tuples */
598
ItemPointerSet(&(ltup->t_tid), lbknum, 1);
0 commit comments