From d2a0bf07f772ba340005ad3ce43a1ed12367b66b Mon Sep 17 00:00:00 2001 From: Andreas Karlsson Date: Tue, 3 Jun 2025 13:50:52 +0200 Subject: [PATCH] Remove ifdef within the same ifdef Since the whole function is within the same ifdef this ifdef is pointless. --- contrib/pg_tde/src/catalog/tde_principal_key.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/contrib/pg_tde/src/catalog/tde_principal_key.c b/contrib/pg_tde/src/catalog/tde_principal_key.c index 5e73d35bbda35..b7d894d823ddb 100644 --- a/contrib/pg_tde/src/catalog/tde_principal_key.c +++ b/contrib/pg_tde/src/catalog/tde_principal_key.c @@ -679,9 +679,7 @@ pg_tde_get_key_info(PG_FUNCTION_ARGS, Oid dbOid) /* Make the tuple into a datum */ result = HeapTupleGetDatum(tuple); -#ifndef FRONTEND pfree(keyring); -#endif PG_RETURN_DATUM(result); }