Blame SOURCES/0014-parted-Fix-crash-with-name-command-and-no-disklabel-.patch

0cb0b9
From f5c628dd51c7d77ff939554425159ab6e8aef1c0 Mon Sep 17 00:00:00 2001
0cb0b9
From: "Brian C. Lane" <bcl@redhat.com>
0cb0b9
Date: Mon, 13 Jul 2015 16:43:11 -0700
0cb0b9
Subject: [PATCH] parted: Fix crash with name command and no disklabel
0cb0b9
 (#1226067)
0cb0b9
0cb0b9
A typo (the last I think) from commit 7eac058 wasn't properly checking
0cb0b9
the result of ped_disk_new so it could crash if there was no disklabel
0cb0b9
on the device.
0cb0b9
---
0cb0b9
 parted/parted.c | 2 +-
0cb0b9
 1 file changed, 1 insertion(+), 1 deletion(-)
0cb0b9
0cb0b9
diff --git a/parted/parted.c b/parted/parted.c
0cb0b9
index 2678554..a9426c4 100644
0cb0b9
--- a/parted/parted.c
0cb0b9
+++ b/parted/parted.c
0cb0b9
@@ -860,7 +860,7 @@ do_name (PedDevice** dev, PedDisk** diskp)
0cb0b9
 
0cb0b9
         if (!*diskp)
0cb0b9
                 *diskp = ped_disk_new (*dev);
0cb0b9
-        if (!diskp)
0cb0b9
+        if (!*diskp)
0cb0b9
                 goto error;
0cb0b9
 
0cb0b9
         if (!command_line_get_partition (_("Partition number?"), *diskp, &part))
0cb0b9
-- 
0cb0b9
2.4.3
0cb0b9