1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

dmsetup: always initialise 'dms' in _stats_update_file()

This commit is contained in:
Bryn M. Reeves 2017-03-10 16:44:08 +00:00
parent d28a50ec76
commit c713745314

View File

@ -5650,8 +5650,8 @@ static int _stats_update_file(CMD_ARGS)
int foreground = _switches[FOREGROUND_ARG]; int foreground = _switches[FOREGROUND_ARG];
int verbose = _switches[VERBOSE_ARG]; int verbose = _switches[VERBOSE_ARG];
char *path, *abspath = NULL; char *path, *abspath = NULL;
struct dm_stats *dms = NULL;
dm_filemapd_mode_t mode; dm_filemapd_mode_t mode;
struct dm_stats *dms;
int fd = -1; int fd = -1;
@ -5764,8 +5764,7 @@ bad:
if ((fd > -1) && close(fd)) if ((fd > -1) && close(fd))
log_error("Error closing %s", path); log_error("Error closing %s", path);
if (dms) dm_stats_destroy(dms);
dm_stats_destroy(dms);
return 0; return 0;
} }