diff options
author | sabetts <sabetts> | 2001-08-18 23:28:07 +0000 |
---|---|---|
committer | sabetts <sabetts> | 2001-08-18 23:28:07 +0000 |
commit | 5ead593f27d2999d943001154c6833b5b2120e1d (patch) | |
tree | bbbdf9953bd8e38552d65c4995ecfcab61e2ccd5 /src/list.c | |
parent | 0a1a6fbcfddf9f4857b1c95f32321bbd27968cea (diff) | |
download | ratpoison-5ead593f27d2999d943001154c6833b5b2120e1d.zip |
fixed transient crash
Diffstat (limited to 'src/list.c')
-rw-r--r-- | src/list.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -492,7 +492,7 @@ is_transient_ancestor (rp_window *win, rp_window *transient_for) tmp = find_window (tmp->transient_for); if (tmp == transient_for) return 1; - } while (tmp->transient); + } while (tmp && tmp->transient); return 0; } |