summaryrefslogtreecommitdiff
path: root/src/common/config_info.c
diff options
context:
space:
mode:
authorPeter Eisentraut2022-09-12 06:31:56 +0000
committerPeter Eisentraut2022-09-12 06:45:03 +0000
commit5015e1e1b58f81a036e4ad16291ef4b3bb7a596c (patch)
tree86ee608e961dc830e733c534db089f1e45706414 /src/common/config_info.c
parent2016055a92f26d648aba9f66d26cc0bcd1619eff (diff)
Assorted examples of expanded type-safer palloc/pg_malloc API
This adds some uses of the new palloc/pg_malloc variants here and there as a demonstration and test. This is kept separate from the actual API patch, since the latter might be backpatched at some point. Reviewed-by: Tom Lane <[email protected]> Discussion: https://www.postgresql.org/message-id/flat/[email protected]
Diffstat (limited to 'src/common/config_info.c')
-rw-r--r--src/common/config_info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/config_info.c b/src/common/config_info.c
index aa643b63fe2..891a1505ccf 100644
--- a/src/common/config_info.c
+++ b/src/common/config_info.c
@@ -39,7 +39,7 @@ get_configdata(const char *my_exec_path, size_t *configdata_len)
/* Adjust this to match the number of items filled below */
*configdata_len = 23;
- configdata = (ConfigData *) palloc(*configdata_len * sizeof(ConfigData));
+ configdata = palloc_array(ConfigData, *configdata_len);
configdata[i].name = pstrdup("BINDIR");
strlcpy(path, my_exec_path, sizeof(path));