]> granicus.if.org Git - postgresql/commitdiff
Unallocate opaque.
authorBruce Momjian <bruce@momjian.us>
Fri, 15 Nov 1996 18:36:31 +0000 (18:36 +0000)
committerBruce Momjian <bruce@momjian.us>
Fri, 15 Nov 1996 18:36:31 +0000 (18:36 +0000)
src/backend/access/gist/gistscan.c
src/backend/access/hash/hashscan.c

index a3f19d4ef62ccd0db180fa3795e1f834a46aa90a..4629de12922282fd207f1b71972e30e14be9b9a6 100644 (file)
@@ -215,6 +215,7 @@ gistendscan(IndexScanDesc s)
     if (p != (GISTScanOpaque) NULL) {
        gistfreestack(p->s_stack);
        gistfreestack(p->s_markstk);
+       pfree (s->opaque);
     }
     
     gistdropscan(s);
index e9a188a71c474beb8f1c4024d107f6e543d49db1..bd776d68c0d79a4799fcaa677958bb1bc2048fa2 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.7 1996/11/05 09:40:22 scrappy Exp $
+ *    $Header: /cvsroot/pgsql/src/backend/access/hash/hashscan.c,v 1.8 1996/11/15 18:36:31 momjian Exp $
  *
  * NOTES
  *    Because we can be doing an index scan on a relation while we
@@ -80,9 +80,7 @@ _hash_dropscan(IndexScanDesc scan)
     else
        last->hashsl_next = chk->hashsl_next;
     
-#ifdef PERFECT_MEM
     pfree (chk);
-#endif /* PERFECT_MEM */
 }
 
 void