I have a small patch for 6.5.

aclchk.c: heap_close() is not called after calling heap_openr().

Atsushi Ogawa
This commit is contained in:
Bruce Momjian 1999-06-19 05:05:52 +00:00
parent 8d37132ec9
commit db4a6a2618
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/aclchk.c,v 1.21 1999/05/10 00:44:53 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/catalog/aclchk.c,v 1.22 1999/06/19 05:05:52 momjian Exp $
* *
* NOTES * NOTES
* See acl.h. * See acl.h.
@ -455,6 +455,7 @@ pg_aclcheck(char *relname, char *usename, AclMode mode)
RelationGetDescr(relation), RelationGetDescr(relation),
(bool *) NULL); (bool *) NULL);
acl = aclownerdefault(relname, (AclId) ownerId); acl = aclownerdefault(relname, (AclId) ownerId);
heap_close(relation);
} }
#else #else
{ /* This is why the syscache is great... */ { /* This is why the syscache is great... */