summaryrefslogtreecommitdiffstats
path: root/elapi/providers/file/file_fmt_csv.c
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2009-09-17 16:04:45 +0200
committerStephen Gallagher <sgallagh@redhat.com>2009-09-21 11:44:51 -0400
commitc8afa2d4bd5ecd6cf5f4dc5d0cbedb9470ce848a (patch)
treea75b3f812038497bcad944f0bc3879272b9e6717 /elapi/providers/file/file_fmt_csv.c
parentc5a0363437783d27140bd359ce59f5a92a879d07 (diff)
downloadding-libs-c8afa2d4bd5ecd6cf5f4dc5d0cbedb9470ce848a.tar.gz
ding-libs-c8afa2d4bd5ecd6cf5f4dc5d0cbedb9470ce848a.tar.xz
ding-libs-c8afa2d4bd5ecd6cf5f4dc5d0cbedb9470ce848a.zip
ELAPI: Ticket 161: Initialize structures with calloc instead of enumerating members
Diffstat (limited to 'elapi/providers/file/file_fmt_csv.c')
-rw-r--r--elapi/providers/file/file_fmt_csv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/elapi/providers/file/file_fmt_csv.c b/elapi/providers/file/file_fmt_csv.c
index a811113..e55d0b1 100644
--- a/elapi/providers/file/file_fmt_csv.c
+++ b/elapi/providers/file/file_fmt_csv.c
@@ -275,7 +275,7 @@ int file_get_csv_cfg(void **storage,
TRACE_FLOW_STRING("file_get_csv_cfg", "Entry");
/* Allocate memory for configuration */
- cfg = (struct file_csv_cfg *)malloc(sizeof(struct file_csv_cfg));
+ cfg = (struct file_csv_cfg *) calloc(1, sizeof(struct file_csv_cfg));
if (cfg == NULL) {
TRACE_ERROR_NUMBER("Failed to allocate storage for CSV configuration", ENOMEM);
return ENOMEM;