rpms/mdadm/devel mdadm-3.0.3-auto.patch,NONE,1.1

Doug Ledford dledford at fedoraproject.org
Fri Jan 15 21:38:45 UTC 2010


Author: dledford

Update of /cvs/extras/rpms/mdadm/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23723

Added Files:
	mdadm-3.0.3-auto.patch 
Log Message:
* Fri Jan 15 2010 Doug Ledford <dledford at redhat.com> - 3.0.3-3
- Fix crash when AUTO keyword is in mdadm.conf (bz552342)


mdadm-3.0.3-auto.patch:
 config.c |   11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

--- NEW FILE mdadm-3.0.3-auto.patch ---
--- mdadm-3.0.3/config.c	2009-10-01 02:57:03.000000000 -0400
+++ mdadm-3.0.3/config.c	2010-01-04 11:24:58.700853405 -0500
@@ -677,12 +677,21 @@ 
 static char *auto_options = NULL;
 void autoline(char *line)
 {
+	char *w;
+
 	if (auto_options) {
 		fprintf(stderr, Name ": AUTO line may only be give once."
 			"  Subsequent lines ignored\n");
 		return;
 	}
-	auto_options = line;		
+
+	auto_options = dl_strdup(line);		
+	dl_init(auto_options);
+
+	for (w=dl_next(line); w != line ; w=dl_next(w)) {
+		char *w2 = dl_strdup(w);
+		dl_add(auto_options, w2);
+	}
 }
 
 int loaded = 0;



More information about the scm-commits mailing list