Remove ifdef within the same ifdef

Since the whole function is within the same ifdef this ifdef is
pointless.
pull/230/head
Andreas Karlsson 3 months ago committed by Andreas Karlsson
parent ad8a0f0457
commit 591d6048e0
  1. 2
      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);
}

Loading…
Cancel
Save