diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-13 00:39:48 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-13 00:39:48 +0000 |
commit | 9b12ab6d5dd6c40ac112456c820a8dc199fc6e16 (patch) | |
tree | 9ee7a9977161f5343d4ffcf6b8c5453c963aae2e /src/backend/executor/functions.c | |
parent | aaa3a0caa6c3e4dacd950e2dc3c1691222c50965 (diff) | |
download | postgresql-9b12ab6d5dd6c40ac112456c820a8dc199fc6e16.tar.gz postgresql-9b12ab6d5dd6c40ac112456c820a8dc199fc6e16.zip |
Add new palloc0 call as merge of palloc and MemSet(0).
Diffstat (limited to 'src/backend/executor/functions.c')
-rw-r--r-- | src/backend/executor/functions.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/backend/executor/functions.c b/src/backend/executor/functions.c index 105784fda4f..71166d9096c 100644 --- a/src/backend/executor/functions.c +++ b/src/backend/executor/functions.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/functions.c,v 1.59 2002/11/11 03:02:18 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/functions.c,v 1.60 2002/11/13 00:39:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -121,9 +121,7 @@ init_execution_state(char *src, Oid *argOidVect, int nargs) int i; ParamListInfo paramLI; - paramLI = (ParamListInfo) palloc((nargs + 1) * sizeof(ParamListInfoData)); - - MemSet(paramLI, 0, (nargs + 1) * sizeof(ParamListInfoData)); + paramLI = (ParamListInfo) palloc0((nargs + 1) * sizeof(ParamListInfoData)); estate->es_param_list_info = paramLI; @@ -185,8 +183,7 @@ init_sql_fcache(FmgrInfo *finfo) typeStruct = (Form_pg_type) GETSTRUCT(typeTuple); - fcache = (SQLFunctionCachePtr) palloc(sizeof(SQLFunctionCache)); - MemSet(fcache, 0, sizeof(SQLFunctionCache)); + fcache = (SQLFunctionCachePtr) palloc0(sizeof(SQLFunctionCache)); /* * get the type length and by-value flag from the type tuple |