From 28cf9041b8f793f2116893306fe55ed151f8ad91 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Tue, 12 Jun 2001 22:35:00 +0000 Subject: [PATCH] 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. --- misc/ChangeLog | 6 ++++++ misc/fsck.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/misc/ChangeLog b/misc/ChangeLog index 64814d1..747ddcf 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 e242b97..17ac42d 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; } -- 1.8.3.1