mirror of
https://github.com/swaywm/sway.git
synced 2024-11-11 21:14:10 +01:00
Merge pull request #2451 from RyanDwyer/fix-ancestor-crash
Fix container_has_ancestor crash
This commit is contained in:
commit
b6428f4751
@ -769,7 +769,7 @@ void container_for_each_descendant(struct sway_container *container,
|
||||
|
||||
bool container_has_ancestor(struct sway_container *descendant,
|
||||
struct sway_container *ancestor) {
|
||||
while (descendant->type != C_ROOT) {
|
||||
while (descendant && descendant->type != C_ROOT) {
|
||||
descendant = descendant->parent;
|
||||
if (descendant == ancestor) {
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user