Be defensive

This commit is contained in:
Kovid Goyal 2026-05-17 08:57:47 +05:30
parent 3e0850a864
commit 7e59c08fc0
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -2242,8 +2242,10 @@ finish_remote_data_if_all_items_received(Window *w, unsigned mime_item_idx) {
static bool
all_children_complete(DragRemoteItem *parent) {
for (size_t i = 0; i < parent->children_sz; i++) {
if (!parent->children[i].completed) return false;
if (parent->children) {
for (size_t i = 0; i < parent->children_sz; i++) {
if (!parent->children[i].completed) return false;
}
}
return true;
}