From cd392fe863cb06ba22f2b54bdb96ef3a6ee6bc5b Mon Sep 17 00:00:00 2001 From: Johan Engelen Date: Tue, 27 Jul 2010 00:17:25 +0200 Subject: [PATCH] fix crash bug 607557 --- src/ui/dialog/livepatheffect-editor.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ui/dialog/livepatheffect-editor.cpp b/src/ui/dialog/livepatheffect-editor.cpp index 62ed4e639..fb24d8e72 100644 --- a/src/ui/dialog/livepatheffect-editor.cpp +++ b/src/ui/dialog/livepatheffect-editor.cpp @@ -299,6 +299,10 @@ LivePathEffectEditor::effect_list_reload(SPLPEItem *lpeitem) PathEffectList::iterator it; for( it = effectlist.begin() ; it!=effectlist.end(); it++ ) { + if ( !(*it)->lpeobject ) { + continue; + } + if ((*it)->lpeobject->get_lpe()) { Gtk::TreeModel::Row row = *(effectlist_store->append()); row[columns.col_name] = (*it)->lpeobject->get_lpe()->getName(); -- 2.30.2