diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2009-09-17 16:04:45 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-09-21 11:44:51 -0400 |
commit | 8a01230d3b5c048658e2157c6ff68b3680aafd26 (patch) | |
tree | fc600a79cb4bfcf0f23c9b36d5ebf00efc27fe97 /common/elapi/elapi_log.c | |
parent | 1016af2b1b97ad4290ccce8fa462cc7e3c191b2e (diff) | |
download | sssd-8a01230d3b5c048658e2157c6ff68b3680aafd26.tar.gz sssd-8a01230d3b5c048658e2157c6ff68b3680aafd26.tar.bz2 sssd-8a01230d3b5c048658e2157c6ff68b3680aafd26.zip |
ELAPI: Ticket 161: Initialize structures with calloc instead of enumerating members
Diffstat (limited to 'common/elapi/elapi_log.c')
-rw-r--r-- | common/elapi/elapi_log.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/elapi/elapi_log.c b/common/elapi/elapi_log.c index aac1e00d..322f5f8a 100644 --- a/common/elapi/elapi_log.c +++ b/common/elapi/elapi_log.c @@ -165,15 +165,12 @@ int elapi_create_dispatcher_adv(struct elapi_dispatcher **dispatcher, TRACE_INFO_STRING("DIR:", config_dir); /* Allocate memory */ - handle = (struct elapi_dispatcher *) malloc(sizeof(struct elapi_dispatcher)); + handle = (struct elapi_dispatcher *) calloc(1, sizeof(struct elapi_dispatcher)); if (handle == NULL) { TRACE_ERROR_NUMBER("Memory allocation failed. Error", ENOMEM); return ENOMEM; } - /* Clean memory - we need it to be able to destroy the dispatcher at any moment */ - memset(handle, 0, sizeof(struct elapi_dispatcher)); - /* Save application name in the handle */ if (appname != NULL) handle->appname = strdup(appname); else handle->appname = strdup(ELAPI_DEFAULT_APP_NAME); |