Blame SOURCES/0194-RHBZ-1351964-kpartx-recurse.patch

4728c8
---
4728c8
 kpartx/dos.c |    2 +-
4728c8
 1 file changed, 1 insertion(+), 1 deletion(-)
4728c8
4728c8
Index: multipath-tools-130222/kpartx/dos.c
4728c8
===================================================================
4728c8
--- multipath-tools-130222.orig/kpartx/dos.c
4728c8
+++ multipath-tools-130222/kpartx/dos.c
4728c8
@@ -46,7 +46,7 @@ read_extended_partition(int fd, struct p
4728c8
 		for (i=0; i<2; i++) {
4728c8
 			memcpy(&p, bp + 0x1be + i * sizeof (p), sizeof (p));
4728c8
 			if (is_extended(p.sys_type)) {
4728c8
-				if (p.nr_sects && !moretodo) {
4728c8
+				if (p.start_sect && p.nr_sects && !moretodo) {
4728c8
 					next = start + sector_size_mul * le32_to_cpu(p.start_sect);
4728c8
 					moretodo = 1;
4728c8
 				}