mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 10:55:37 -04:00
Fix uninitialized values (valgrind report)
This commit is contained in:
parent
1ea79efce8
commit
d5dca07e22
2 changed files with 2 additions and 1 deletions
|
@ -23,6 +23,7 @@
|
|||
|
||||
EncryptWidget::EncryptWidget( QWidget* parent )
|
||||
: QWidget( parent )
|
||||
, m_state( EncryptionDisabled )
|
||||
{
|
||||
setupUi( this );
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ process_device(PedDevice *dev)
|
|||
int
|
||||
check_big_enough(long long required_space)
|
||||
{
|
||||
PedDevice *dev;
|
||||
PedDevice *dev = NULL;
|
||||
ped_exception_fetch_all();
|
||||
ped_device_probe_all();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue