From: Theodore Ts'o Date: Tue, 12 Jun 2001 22:35:00 +0000 (+0000) Subject: ChangeLog, fsck.c: X-Git-Tag: E2FSPROGS-1_21~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=28cf9041b8f793f2116893306fe55ed151f8ad91;p=thirdparty%2Fe2fsprogs.git ChangeLog, fsck.c: fsck.c (device_already_active): Fixed bug which can cause fsck to core dump if there are a mix of devices with standard and non-standard names. --- diff --git a/misc/ChangeLog b/misc/ChangeLog index 64814d1a9..747ddcf9c 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,9 @@ +2001-06-12 Theodore Tso + + * fsck.c (device_already_active): Fixed bug which can cause fsck + to core dump if there are a mix of devices with standard + and non-standard names. + 2001-06-07 Theodore Tso * chattr.c, lsattr.c: Don't use _FILE_BITS_OFFSET method of using diff --git a/misc/fsck.c b/misc/fsck.c index e242b97e2..17ac42dde 100644 --- a/misc/fsck.c +++ b/misc/fsck.c @@ -821,7 +821,7 @@ static int device_already_active(char *device) if (!base) return (instance_list != 0); for (inst = instance_list; inst; inst = inst->next) { - if (!strcmp(base, inst->base_device)) { + if (!inst->base_device || !strcmp(base, inst->base_device)) { free(base); return 1; }