From: Darrick J. Wong Date: Wed, 20 Dec 2023 16:53:44 +0000 (-0800) Subject: xfs_mdrestore: fix uninitialized variables in mdrestore main X-Git-Tag: v6.6.0~5^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cad0e61555c65b66a828e81c117fe11fcae9cdad;p=thirdparty%2Fxfsprogs-dev.git xfs_mdrestore: fix uninitialized variables in mdrestore main Coverity complained about the "is fd a file?" flags being uninitialized. Clean this up. Coverity-id: 1554270 Signed-off-by: Darrick J. Wong Reviewed-by: Christoph Hellwig Reviewed-by: Chandan Babu R --- diff --git a/mdrestore/xfs_mdrestore.c b/mdrestore/xfs_mdrestore.c index 2de177c6e..5dfc42349 100644 --- a/mdrestore/xfs_mdrestore.c +++ b/mdrestore/xfs_mdrestore.c @@ -472,11 +472,11 @@ main( union mdrestore_headers headers; FILE *src_f; char *logdev = NULL; - int data_dev_fd; - int log_dev_fd; + int data_dev_fd = -1; + int log_dev_fd = -1; int c; - bool is_data_dev_file; - bool is_log_dev_file; + bool is_data_dev_file = false; + bool is_log_dev_file = false; mdrestore.show_progress = false; mdrestore.show_info = false; @@ -561,7 +561,6 @@ main( /* check and open data device */ data_dev_fd = open_device(argv[optind], &is_data_dev_file); - log_dev_fd = -1; if (mdrestore.external_log) /* check and open log device */ log_dev_fd = open_device(logdev, &is_log_dev_file);