Blame SOURCES/star-1.5.3-pax-X-option.patch

483475
From 68f6e16d7d2c8a6c91cd430b12a1a0c7b15672b4 Mon Sep 17 00:00:00 2001
483475
From: Pavel Raiskup <praiskup@redhat.com>
483475
Date: Wed, 17 Dec 2014 12:57:37 +0100
483475
Subject: [PATCH] pax: don't segfault with -X option
483475
483475
Pass a valid address of nomount variable into getallargs().
483475
---
483475
 star/pax.c | 2 +-
483475
 1 file changed, 1 insertion(+), 1 deletion(-)
483475
483475
diff --git a/star/pax.c b/star/pax.c
483475
index 9abe3f8..c627a46 100644
483475
--- a/star/pax.c
483475
+++ b/star/pax.c
483475
@@ -166,7 +166,7 @@ gargs(ac, av)
483475
 				gethdr, &chdrtype,	/* -x */
483475
 				gethdr, &chdrtype,	/* artype= */
483475
 #endif /* __old__lint */
483475
-				nomount) < 0) {
483475
+				&nomount) < 0) {
483475
 		errmsgno(EX_BAD, "Bad Option: %s.\n", av[0]);
483475
 		susage(EX_BAD);
483475
 	}
483475
-- 
483475
2.1.0
483475