summaryrefslogtreecommitdiffstats
path: root/common/elapi/elapi_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/elapi/elapi_log.c')
-rw-r--r--common/elapi/elapi_log.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/common/elapi/elapi_log.c b/common/elapi/elapi_log.c
index aac1e00d2..322f5f8a3 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);