creating a new partition on a BSD partitiontable failed, causing a
* src/GParted_Core.cc: creating a new partition on a BSD partitiontable failed, causing a segfault when setting the partitiontype. fixed.
This commit is contained in:
parent
4e1ed8d9d0
commit
2c3ce61275
|
@ -1,3 +1,8 @@
|
||||||
|
2006-04-15 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
|
* src/GParted_Core.cc: creating a new partition on a BSD partitiontable
|
||||||
|
failed, causing a segfault when setting the partitiontype. fixed.
|
||||||
|
|
||||||
2006-04-05 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
2006-04-05 Bart Hakvoort <hakvoort@cvs.gnome.org>
|
||||||
|
|
||||||
* src/Dialog_Partition_Copy.cc: only allow growing of copy if there is
|
* src/Dialog_Partition_Copy.cc: only allow growing of copy if there is
|
||||||
|
|
|
@ -972,6 +972,7 @@ bool GParted_Core::create_empty_partition( Partition & new_partition,
|
||||||
PedPartitionType type;
|
PedPartitionType type;
|
||||||
lp_partition = NULL ;
|
lp_partition = NULL ;
|
||||||
PedConstraint *constraint = NULL ;
|
PedConstraint *constraint = NULL ;
|
||||||
|
PedFileSystemType* fs_type = NULL ;
|
||||||
|
|
||||||
//create new partition
|
//create new partition
|
||||||
switch ( new_partition .type )
|
switch ( new_partition .type )
|
||||||
|
@ -990,9 +991,12 @@ bool GParted_Core::create_empty_partition( Partition & new_partition,
|
||||||
type = PED_PARTITION_FREESPACE;
|
type = PED_PARTITION_FREESPACE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( new_partition .type != GParted::TYPE_EXTENDED )
|
||||||
|
fs_type = ped_file_system_type_get( "ext2" ) ;
|
||||||
|
|
||||||
lp_partition = ped_partition_new( lp_disk,
|
lp_partition = ped_partition_new( lp_disk,
|
||||||
type,
|
type,
|
||||||
NULL,
|
fs_type,
|
||||||
new_partition .sector_start,
|
new_partition .sector_start,
|
||||||
new_partition .sector_end ) ;
|
new_partition .sector_end ) ;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue