mirror of
https://github.com/postgres/postgres.git
synced 2025-06-18 00:02:37 -04:00
Fix minor memory leak in Standby startup
StandbyRecoverPreparedTransactions() leaked the buffer used for two phase state file. This was leaked once at startup and at every shutdown checkpoint seen. Backpatch to 9.6 Stas Kelvich
This commit is contained in:
parent
d299eb41df
commit
67c6bd1ca3
@ -1886,6 +1886,8 @@ StandbyRecoverPreparedTransactions(bool overwriteOK)
|
||||
Assert(TransactionIdFollows(subxid, xid));
|
||||
SubTransSetParent(xid, subxid, overwriteOK);
|
||||
}
|
||||
|
||||
pfree(buf);
|
||||
}
|
||||
}
|
||||
FreeDir(cldir);
|
||||
|
Loading…
x
Reference in New Issue
Block a user