From fe5f08f62f92e3e6d80999cf44545934927933f9 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 9 Oct 2024 06:22:39 +0200 Subject: [PATCH] Fix iterator nil deref --- gfx/prop/children.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/prop/children.lua b/gfx/prop/children.lua index ce53b27..3628d24 100644 --- a/gfx/prop/children.lua +++ b/gfx/prop/children.lua @@ -8,7 +8,7 @@ function Children:with(elementType) function elementType:_iterateChildren(opts) local func, tbl, start = ipairs(propSelf:getState(self)) return function(t, i) - if i == opts.to then + if i == (opts and opts.to) then return nil, nil end return func(t, i)