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/utils/cache/catcache.c | |
parent | aaa3a0caa6c3e4dacd950e2dc3c1691222c50965 (diff) |
Add new palloc0 call as merge of palloc and MemSet(0).
Diffstat (limited to 'src/backend/utils/cache/catcache.c')
-rw-r--r-- | src/backend/utils/cache/catcache.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/utils/cache/catcache.c b/src/backend/utils/cache/catcache.c index ffae38015b6..77ddf4a50e6 100644 --- a/src/backend/utils/cache/catcache.c +++ b/src/backend/utils/cache/catcache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.101 2002/11/11 03:02:19 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.102 2002/11/13 00:39:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -808,8 +808,7 @@ InitCatCache(int id, * * Note: we assume zeroing initializes the Dllist headers correctly */ - cp = (CatCache *) palloc(sizeof(CatCache) + NCCBUCKETS * sizeof(Dllist)); - MemSet((char *) cp, 0, sizeof(CatCache) + NCCBUCKETS * sizeof(Dllist)); + cp = (CatCache *) palloc0(sizeof(CatCache) + NCCBUCKETS * sizeof(Dllist)); /* * initialize the cache's relation information for the relation |