misc: fix reassigned values before old ones has been used [cppcheck]

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2017-05-28 10:21:48 +01:00 committed by Karel Zak
parent e3e0054f5a
commit 1b5042636f
17 changed files with 23 additions and 23 deletions

View File

@ -323,7 +323,7 @@ static char *table_to_string(struct cfdisk *cf, struct fdisk_table *tb)
{
struct fdisk_partition *pa;
struct fdisk_label *lb;
struct fdisk_iter *itr = NULL;
struct fdisk_iter *itr;
struct libscols_table *table = NULL;
struct libscols_iter *s_itr = NULL;
char *res = NULL;

View File

@ -225,7 +225,7 @@ static char *scandev_devno_to_devpath(dev_t devno)
*/
char *blkid_devno_to_devname(dev_t devno)
{
char *path = NULL;
char *path;
char buf[PATH_MAX];
path = sysfs_devno_to_devpath(devno, buf, sizeof(buf));

View File

@ -206,7 +206,7 @@ blkid_probe blkid_clone_probe(blkid_probe parent)
*/
blkid_probe blkid_new_probe_from_filename(const char *filename)
{
int fd = -1;
int fd;
blkid_probe pr = NULL;
fd = open(filename, O_RDONLY|O_CLOEXEC);

View File

@ -1925,7 +1925,7 @@ fail:
static int gpt_write_pmbr(struct fdisk_context *cxt)
{
off_t offset;
struct gpt_legacy_mbr *pmbr = NULL;
struct gpt_legacy_mbr *pmbr;
assert(cxt);
assert(cxt->firstsector);

View File

@ -1528,7 +1528,7 @@ static int test_apply(struct fdisk_test *ts, int argc, char *argv[])
{
char *devname = argv[1], *scriptname = argv[2];
struct fdisk_context *cxt;
struct fdisk_script *dp = NULL;
struct fdisk_script *dp;
struct fdisk_table *tb = NULL;
struct fdisk_iter *itr = NULL;
struct fdisk_partition *pa = NULL;

View File

@ -101,7 +101,7 @@ uint64_t btrfs_get_default_subvol_id(const char *path)
{
int iocret;
int fd;
DIR *dirstream = NULL;
DIR *dirstream;
struct btrfs_ioctl_search_args args;
struct btrfs_ioctl_search_key *sk = &args.key;
struct btrfs_ioctl_search_header *sh;

View File

@ -489,9 +489,9 @@ char *mnt_get_fstype(const char *devname, int *ambi, struct libmnt_cache *cache)
static char *canonicalize_path_and_cache(const char *path,
struct libmnt_cache *cache)
{
char *p = NULL;
char *key = NULL;
char *value = NULL;
char *p;
char *key;
char *value;
DBG(CACHE, ul_debugobj(cache, "canonicalize path %s", path));
p = canonicalize_path(path);

View File

@ -1965,7 +1965,7 @@ static int apply_table(struct libmnt_context *cxt, struct libmnt_table *tb,
int direction)
{
struct libmnt_fs *fs = NULL;
const char *src = NULL, *tgt = NULL;
const char *src, *tgt;
int rc;
assert(cxt);

View File

@ -485,7 +485,7 @@ static int evaluate_permissions(struct libmnt_context *cxt)
*/
if (u_flags & (MNT_MS_USER | MNT_MS_OWNER | MNT_MS_GROUP)) {
char *curr_user = NULL;
char *curr_user;
char *mtab_user = NULL;
size_t sz;

View File

@ -382,7 +382,7 @@ insert_value(char **str, char *pos, const char *substr, char **next)
size_t strsz = strlen(*str);
size_t possz = strlen(pos);
size_t posoff;
char *p = NULL;
char *p;
int sep;
/* is it necessary to prepend '=' before the substring ? */

View File

@ -305,8 +305,8 @@ done:
static int test_diff(struct libmnt_test *ts, int argc, char *argv[])
{
struct libmnt_table *tb_old = NULL, *tb_new = NULL;
struct libmnt_tabdiff *diff = NULL;
struct libmnt_table *tb_old, *tb_new;
struct libmnt_tabdiff *diff;
struct libmnt_iter *itr;
struct libmnt_fs *old, *new;
int rc = -1, change;

View File

@ -291,7 +291,7 @@ static int utab_new_entry(struct libmnt_update *upd, struct libmnt_fs *fs,
unsigned long mountflags)
{
int rc = 0;
const char *o = NULL, *a = NULL;
const char *o, *a;
char *u = NULL;
assert(fs);

View File

@ -293,7 +293,7 @@ size_t scols_wrapnl_chunksize(const struct libscols_column *cl __attribute__((un
size_t sum = 0;
while (data && *data) {
const char *p = data;
const char *p;
size_t sz;
p = strchr(data, '\n');

View File

@ -472,7 +472,7 @@ static int verify_filesystem(struct verify_context *vfy)
int verify_table(struct libmnt_table *tb)
{
struct verify_context vfy = { .nerrors = 0 };
struct libmnt_iter *itr = NULL;
struct libmnt_iter *itr;
int rc = 0; /* overall return code (alloc errors, etc.) */
int check_order = is_listall_mode();
static int has_read_fs = 0;

View File

@ -873,7 +873,7 @@ static void cache_set_targets(struct libmnt_cache *tmp)
static int tab_is_tree(struct libmnt_table *tb)
{
struct libmnt_fs *fs = NULL;
struct libmnt_iter *itr = NULL;
struct libmnt_iter *itr;
int rc = 0;
itr = mnt_new_iter(MNT_ITER_BACKWARD);
@ -892,7 +892,7 @@ static int tab_is_tree(struct libmnt_table *tb)
static int tab_is_kernel(struct libmnt_table *tb)
{
struct libmnt_fs *fs = NULL;
struct libmnt_iter *itr = NULL;
struct libmnt_iter *itr;
itr = mnt_new_iter(MNT_ITER_BACKWARD);
if (!itr)
@ -1008,7 +1008,7 @@ again:
static int add_matching_lines(struct libmnt_table *tb,
struct libscols_table *table, int direction)
{
struct libmnt_iter *itr = NULL;
struct libmnt_iter *itr;
struct libmnt_fs *fs;
int nlines = 0, rc = -1;
@ -1068,7 +1068,7 @@ static int poll_table(struct libmnt_table *tb, const char *tabfile,
FILE *f = NULL;
int rc = -1;
struct libmnt_iter *itr = NULL;
struct libmnt_table *tb_new = NULL;
struct libmnt_table *tb_new;
struct libmnt_tabdiff *diff = NULL;
struct pollfd fds[1];

View File

@ -113,7 +113,7 @@ static int printf_loopdev(struct loopdev_cxt *lc)
uint64_t x;
dev_t dev = 0;
ino_t ino = 0;
char *fname = NULL;
char *fname;
uint32_t type;
fname = loopcxt_get_backing_file(lc);

View File

@ -501,7 +501,7 @@ static void swap_get_info(struct swap_device *dev, const char *hdr)
static int swapon_checks(const struct swapon_ctl *ctl, struct swap_device *dev)
{
struct stat st;
int fd = -1, sig;
int fd, sig;
char *hdr = NULL;
unsigned long long devsize = 0;
int permMask;