summaryrefslogtreecommitdiffstats
path: root/src/sp-lpe-item.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2016-10-19 14:40:29 +0000
committerjabiertxof <info@marker.es>2016-10-19 14:40:29 +0000
commit602f9c6600ebd89491dbe5541445ba3545cbb940 (patch)
tree4811ebafeb534a16e98ce64e3d2d4648a9b1862f /src/sp-lpe-item.cpp
parent[Bug #1574561] Italian translation update. (diff)
downloadinkscape-602f9c6600ebd89491dbe5541445ba3545cbb940.tar.gz
inkscape-602f9c6600ebd89491dbe5541445ba3545cbb940.zip
Fix bug:1634641 crash on delete
Fixed bugs: - https://launchpad.net/bugs/1634645 (bzr r15179)
Diffstat (limited to 'src/sp-lpe-item.cpp')
-rw-r--r--src/sp-lpe-item.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-lpe-item.cpp b/src/sp-lpe-item.cpp
index f0b46a547..8f0713652 100644
--- a/src/sp-lpe-item.cpp
+++ b/src/sp-lpe-item.cpp
@@ -588,7 +588,7 @@ bool SPLPEItem::hasBrokenPathEffect() const
bool SPLPEItem::hasPathEffect() const
{
- if (path_effect_list->empty()) {
+ if (!path_effect_list || path_effect_list->empty()) {
return false;
}