From 13fa34b990f86b11e3f67260406c9de87ee1e380 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 19 Jun 1999 05:05:52 +0000 Subject: [PATCH] I have a small patch for 6.5. aclchk.c: heap_close() is not called after calling heap_openr(). Atsushi Ogawa --- src/backend/catalog/aclchk.c | 1 + 1 file changed, 1 insertion(+) 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... */ -- 2.39.5