diff options
author | OBATA Akio <obache@wizdas.com> | 2022-01-13 16:55:33 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2022-01-13 21:47:00 +0900 |
commit | a041841534fa59bef86eae3570632c2e5c805198 (patch) | |
tree | f02b36194c363a2b4c071e6c22f73577939766cd | |
parent | 174f7ef987c3e790259c8184c54f4de0cdfeeecb (diff) | |
download | tdebase-a041841534fa59bef86eae3570632c2e5c805198.tar.gz tdebase-a041841534fa59bef86eae3570632c2e5c805198.zip |
twin: fix unwated pointer reference for window ID
Just the ID is required.
Signed-off-by: OBATA Akio <obache@wizdas.com>
(cherry picked from commit e23eb421326df55c54c14d394970ed4d69207297)
-rw-r--r-- | twin/compton-tde/compton.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twin/compton-tde/compton.c b/twin/compton-tde/compton.c index 0c1b056ee..603402fc6 100644 --- a/twin/compton-tde/compton.c +++ b/twin/compton-tde/compton.c @@ -3250,7 +3250,7 @@ win_determine_greyscale_background(session_t *ps, win *w) { if (IsViewable != w->a.map_state) return; - bool greyscale_background_new = (determine_window_transparency_filter_greyscale(ps, &w->id) || + bool greyscale_background_new = (determine_window_transparency_filter_greyscale(ps, w->id) || (ps->o.greyscale_background && !win_match(ps, w, ps->o.greyscale_background_blacklist, &w->cache_bbblst))); win_set_greyscale_background(ps, w, greyscale_background_new); |