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 ba30435 commit 3208b4dCopy full SHA for 3208b4d
src/backend/utils/adt/acl.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.1.1.1 1996/07/09 06:22:02 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/adt/acl.c,v 1.1.1.1.2.1 1996/10/11 03:15:38 scrappy Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -258,7 +258,11 @@ aclitemout(AclItem *aip)
258
(void) strcat(p, "group ");
259
tmpname = get_groname(aip->ai_id);
260
(void) strncat(p, tmpname, NAMEDATALEN);
261
+#ifdef ACL_PATCH
262
+ /* tmpname is a pointer into tuple data, don't pfree it */
263
+#else
264
pfree(tmpname);
265
+#endif
266
break;
267
case ACL_IDTYPE_WORLD:
268
0 commit comments