]> git.pld-linux.org Git - packages/parted.git/blob - 0014-parted-Fix-crash-with-name-command-and-no-disklabel-.patch
- rel 4; tons of patches from FC
[packages/parted.git] / 0014-parted-Fix-crash-with-name-command-and-no-disklabel-.patch
1 From f5c628dd51c7d77ff939554425159ab6e8aef1c0 Mon Sep 17 00:00:00 2001
2 From: "Brian C. Lane" <bcl@redhat.com>
3 Date: Mon, 13 Jul 2015 16:43:11 -0700
4 Subject: [PATCH] parted: Fix crash with name command and no disklabel
5  (#1226067)
6
7 A typo (the last I think) from commit 7eac058 wasn't properly checking
8 the result of ped_disk_new so it could crash if there was no disklabel
9 on the device.
10 ---
11  parted/parted.c | 2 +-
12  1 file changed, 1 insertion(+), 1 deletion(-)
13
14 diff --git a/parted/parted.c b/parted/parted.c
15 index 2678554..a9426c4 100644
16 --- a/parted/parted.c
17 +++ b/parted/parted.c
18 @@ -860,7 +860,7 @@ do_name (PedDevice** dev, PedDisk** diskp)
19  
20          if (!*diskp)
21                  *diskp = ped_disk_new (*dev);
22 -        if (!diskp)
23 +        if (!*diskp)
24                  goto error;
25  
26          if (!command_line_get_partition (_("Partition number?"), *diskp, &part))
27 -- 
28 2.4.3
29
This page took 0.076467 seconds and 3 git commands to generate.