mirror of
https://github.com/postgres/postgres.git
synced 2026-07-09 01:31:02 -04:00
In fe_memutils.h, we have various allocation functions beginning with either pg_ or p. The pg_ functions have a matching pg_free() for freeing memory, while the p functions use pfree(). In some cases, we were allocating memory with one set of functions while using the wrong deallocation functions. This creates a tiny bit of mental overhead when reading code. Matching up allocation and deallocation functions makes it easier to analyze memory handling in a code path. Author: Tristan Partin <tristan@partin.io> Reviewed-by: Zsolt Parragi <zsolt.parragi@percona.com> Discussion: https://www.postgresql.org/message-id/flat/DIBZE2B6SVF2.28R3EQTYJSWIG@partin.io |
||
|---|---|---|
| .. | ||
| backend | ||
| bin | ||
| common | ||
| fe_utils | ||
| include | ||
| interfaces | ||
| makefiles | ||
| pl | ||
| port | ||
| template | ||
| test | ||
| timezone | ||
| tools | ||
| tutorial | ||
| .gitignore | ||
| DEVELOPERS | ||
| Makefile | ||
| Makefile.global.in | ||
| Makefile.shlib | ||
| meson.build | ||
| nls-global.mk | ||