Fix a few minor coverity warnings (not initialized members)

This commit is contained in:
jean-pierre charras 2017-11-09 18:51:06 +01:00
parent 9f0b2e4bb0
commit 9723b0d844
4 changed files with 5 additions and 1 deletions

View File

@ -141,6 +141,8 @@ std::unique_ptr<FOOTPRINT_LIST> FOOTPRINT_LIST::GetInstance( KIWAY& aKiway )
FOOTPRINT_ASYNC_LOADER::FOOTPRINT_ASYNC_LOADER() : m_list( nullptr ) FOOTPRINT_ASYNC_LOADER::FOOTPRINT_ASYNC_LOADER() : m_list( nullptr )
{ {
m_started = false;
m_total_libs = 0;
} }

View File

@ -72,6 +72,7 @@ FOOTPRINT_SELECT_WIDGET::FOOTPRINT_SELECT_WIDGET( wxWindow* aParent,
m_fp_loader( aLoader ), m_fp_loader( aLoader ),
m_fp_list( aFpList ) m_fp_list( aFpList )
{ {
m_zero_filter = true;
m_sizer = new wxBoxSizer( wxVERTICAL ); m_sizer = new wxBoxSizer( wxVERTICAL );
m_progress_timer = std::make_unique<wxTimer>( this ); m_progress_timer = std::make_unique<wxTimer>( this );
m_book = new wxSimplebook( this, wxID_ANY ); m_book = new wxSimplebook( this, wxID_ANY );

View File

@ -281,6 +281,7 @@ private:
{ {
SCAN_STATE() SCAN_STATE()
{ {
dist_prev = INT_MAX;
dist_max = INT_MAX; dist_max = INT_MAX;
nearest = -1; nearest = -1;
nearest_prev = -1; nearest_prev = -1;

View File

@ -165,7 +165,7 @@ class FP_THREAD_IFACE
std::deque<CACHE_ENTRY> m_loaderQueue; std::deque<CACHE_ENTRY> m_loaderQueue;
std::map<LIB_ID, CACHE_ENTRY> m_cachedFootprints; std::map<LIB_ID, CACHE_ENTRY> m_cachedFootprints;
LIB_ID m_current_fp; LIB_ID m_current_fp;
FOOTPRINT_PREVIEW_PANEL* m_panel; FOOTPRINT_PREVIEW_PANEL* m_panel = nullptr;
MUTEX m_lock; MUTEX m_lock;
}; };