From 39b2bd06b8a992607ef6a315b08d2bf97cc6f24f Mon Sep 17 00:00:00 2001 From: Zdenek Kabelac Date: Wed, 26 Apr 2023 14:15:21 +0200 Subject: cov: some initializers --- lib/device/dev-type.c | 6 +++--- lib/device/filesystem.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'lib') diff --git a/lib/device/dev-type.c b/lib/device/dev-type.c index 8b51a672a..999b939c5 100644 --- a/lib/device/dev-type.c +++ b/lib/device/dev-type.c @@ -827,7 +827,7 @@ int fs_block_size_and_type(const char *pathname, uint32_t *fs_block_size_bytes, { blkid_probe probe = NULL; const char *type_str = NULL, *size_str = NULL; - size_t len; + size_t len = 0; int ret = 1; int rc; @@ -887,8 +887,8 @@ out: int fs_get_blkid(const char *pathname, struct fs_info *fsi) { blkid_probe probe = NULL; - const char *str; - size_t len; + const char *str = ""; + size_t len = 0; uint64_t fslastblock = 0; unsigned int fsblocksize = 0; int rc; diff --git a/lib/device/filesystem.c b/lib/device/filesystem.c index 2163276ed..5ec090a2c 100644 --- a/lib/device/filesystem.c +++ b/lib/device/filesystem.c @@ -96,7 +96,7 @@ static int _get_crypt_path(dev_t lv_devt, char *lv_path, char *crypt_path) int lv_crypt_is_active(struct cmd_context *cmd, char *lv_path) { - char crypt_path[PATH_MAX]; + char crypt_path[PATH_MAX] = { 0 }; struct stat st_lv; if (stat(lv_path, &st_lv) < 0) { @@ -111,7 +111,7 @@ int fs_get_info(struct cmd_context *cmd, struct logical_volume *lv, struct fs_info *fsi, int include_mount) { char lv_path[PATH_MAX]; - char crypt_path[PATH_MAX]; + char crypt_path[PATH_MAX] = { 0 }; struct stat st_lv; struct stat st_crypt; struct stat st_top; @@ -234,7 +234,7 @@ int fs_mount_state_is_misnamed(struct cmd_context *cmd, struct logical_volume *l char proc_fstype[FSTYPE_MAX]; char proc_devpath[PATH_MAX]; char proc_mntpath[PATH_MAX]; - char mtab_mntpath[PATH_MAX]; + char mtab_mntpath[PATH_MAX] = { 0 }; char dm_devpath[PATH_MAX]; char tmp_path[PATH_MAX]; char *dm_name; -- cgit v1.2.1