From: Bruce Momjian Date: Sat, 19 Jun 1999 05:05:52 +0000 (+0000) Subject: I have a small patch for 6.5. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=13fa34b990f86b11e3f67260406c9de87ee1e380;p=users%2Fbernd%2Fpostgres.git I have a small patch for 6.5. aclchk.c: heap_close() is not called after calling heap_openr(). Atsushi Ogawa --- diff --git a/src/backend/catalog/aclchk.c b/src/backend/catalog/aclchk.c index e253058e91..3683ec3d4c 100644 --- a/src/backend/catalog/aclchk.c +++ b/src/backend/catalog/aclchk.c @@ -455,6 +455,7 @@ pg_aclcheck(char *relname, char *usename, AclMode mode) RelationGetDescr(relation), (bool *) NULL); acl = aclownerdefault(relname, (AclId) ownerId); + heap_close(relation); } #else { /* This is why the syscache is great... */