summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS3
-rw-r--r--perl-install/diskdrake/hd_gtk.pm10
-rw-r--r--perl-install/install/NEWS3
3 files changed, 12 insertions, 4 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index ec60a967a..87714db6a 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,3 +1,6 @@
+- diskdrake
+ o ensure we initialize only once but at least one, thus fixing crash
+ when embedded or in installer (#43011)
- localedrake
o install proper qtX package for gcin
diff --git a/perl-install/diskdrake/hd_gtk.pm b/perl-install/diskdrake/hd_gtk.pm
index d119c1db1..76ced7920 100644
--- a/perl-install/diskdrake/hd_gtk.pm
+++ b/perl-install/diskdrake/hd_gtk.pm
@@ -70,8 +70,11 @@ sub main {
0, (my $general_action_box = Gtk2::HBox->new(0,0)),
),
);
- my $lock;
+ my ($lock, $initializing) = (undef, 1);
$update_all = sub {
+ state $not_first;
+ return if $initializing && $not_first;
+ $not_first = 1;
$lock and return;
$lock = 1;
partition_table::assign_device_numbers($_) foreach fs::get::hds($all_hds);
@@ -87,9 +90,7 @@ sub main {
$notebook_widget->signal_connect(switch_page => sub {
$current_kind = $notebook[$_[2]];
$current_entry = '';
- state $not_first;
- $update_all->() if $not_first;
- $not_first = 1;
+ $update_all->();
});
# ensure partitions bar is properlyz size on first display:
$notebook_widget->signal_connect(realize => $update_all);
@@ -102,6 +103,7 @@ sub main {
N("If you plan to use aboot, be careful to leave a free space (2048 sectors is enough)
at the beginning of the disk")) if arch() eq 'alpha' && !$::isEmbedded;
+ undef $initializing;
$w->main;
}
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 32150b7fe..fd9cdaf80 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -2,6 +2,9 @@
box in english lang (#41103)
- do not set $HOME while installing packages (#18088)
- install proper qtX package for gcin
+- partitionning step
+ o ensure we initialize only once but at least one, thus fixing crash
+ when embedded or in installer (#43011)
Version 11.20 - 20 August 2008