From: Josh Andler Date: Mon, 26 Jul 2010 22:27:20 +0000 (-0700) Subject: fix for crash bug 607557 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;ds=sidebyside;h=d678fce09c601c803271e129976a4ed7e61125a5;p=inkscape.git fix for crash bug 607557 --- 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();