From c8afa2d4bd5ecd6cf5f4dc5d0cbedb9470ce848a Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 17 Sep 2009 16:04:45 +0200 Subject: ELAPI: Ticket 161: Initialize structures with calloc instead of enumerating members --- elapi/elapi_log.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'elapi/elapi_log.c') diff --git a/elapi/elapi_log.c b/elapi/elapi_log.c index aac1e00..322f5f8 100644 --- a/elapi/elapi_log.c +++ b/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); -- cgit