summaryrefslogtreecommitdiffstats
path: root/src/archive.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-10-29 03:47:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-10-29 03:47:53 +0200
commita08c6ac9e3c8ac162ce08b730fd6108e2f71213c (patch)
tree842abfbe689363ffb623bfba5c9cce742fa7ceb0 /src/archive.cpp
parent260c019dc2e15be0618067a8c1c9f7b4b9340526 (diff)
downloadbasket-a08c6ac9e3c8ac162ce08b730fd6108e2f71213c.tar.gz
basket-a08c6ac9e3c8ac162ce08b730fd6108e2f71213c.zip
Prevent null pointer deference in methods for selection.
This resolves the crash when exporting the Basket archive. Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/archive.cpp')
-rw-r--r--src/archive.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/archive.cpp b/src/archive.cpp
index 3f3377c..aec789f 100644
--- a/src/archive.cpp
+++ b/src/archive.cpp
@@ -228,7 +228,8 @@ void Archive::saveBasketToArchive(Basket *basket, bool recursive, KTar *tar, TQS
// Recursively save child baskets:
BasketListViewItem *item = Global::bnpView->listViewItemForBasket(basket);
- if (recursive && item->firstChild()) {
+ if (recursive && item && item->firstChild())
+ {
for (BasketListViewItem *child = (BasketListViewItem*) item->firstChild(); child; child = (BasketListViewItem*) child->nextSibling()) {
saveBasketToArchive(child->basket(), recursive, tar, backgrounds, tempFolder, progress);
}