summaryrefslogtreecommitdiffstats
path: root/config.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2006-11-09 09:37:10 +1100
committerNeil Brown <neilb@suse.de>2006-11-09 09:37:10 +1100
commitd87d0978e2aeaa73f219d0d0a8b4eb5c73027551 (patch)
treeefab61e21d348386effb07c5a58996579d22bd68 /config.c
parent209b742f4d530706811463354c29265de2023c01 (diff)
downloadmdadm-d87d0978e2aeaa73f219d0d0a8b4eb5c73027551.tar.gz
mdadm-d87d0978e2aeaa73f219d0d0a8b4eb5c73027551.tar.xz
mdadm-d87d0978e2aeaa73f219d0d0a8b4eb5c73027551.zip
Strdup the bitmap file name found in the config file
Otherwise we quickly lose it...
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.c b/config.c
index d251fbf..38e911a 100644
--- a/config.c
+++ b/config.c
@@ -464,7 +464,7 @@ void arrayline(char *line)
fprintf(stderr, Name ": only specify bitmap file once. %s ignored\n",
w);
else
- mis.bitmap_file = w+7;
+ mis.bitmap_file = strdup(w+7);
} else if (strncasecmp(w, "devices=", 8 ) == 0 ) {
if (mis.devices)