File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 10
10
*
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.97 1998/01/25 04:08:54 scrappy Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.98 1998/01/25 04:10:32 scrappy Exp $
14
14
*
15
15
* HISTORY
16
16
* AUTHOR DATE MAJOR EVENT
@@ -1400,6 +1400,8 @@ opt_portal_name: IN name { $$ = $2; }
1400
1400
GrantStmt: GRANT privileges ON relation_name_list TO grantee opt_with_grant
1401
1401
{
1402
1402
$$ = (Node*)makeAclStmt($2,$4,$6,'+');
1403
+ pfree($2);
1404
+ pfree($6);
1403
1405
}
1404
1406
;
1405
1407
@@ -1424,6 +1426,7 @@ operation_commalist: operation
1424
1426
| operation_commalist ',' operation
1425
1427
{
1426
1428
$$ = aclmakepriv($1,$3);
1429
+ pfree($1);
1427
1430
}
1428
1431
;
1429
1432
You can’t perform that action at this time.
0 commit comments