changelog: crash when xdg token is set, but compositor does not support activation

This commit is contained in:
Daniel Eklöf 2023-09-21 18:31:46 +02:00
parent 9257273d84
commit b2963bbf80
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 4 additions and 1 deletions

View file

@ -93,10 +93,13 @@
another opaque, maximized window ([#1464][1464]).
* Double-width characters, and grapheme clusters breaking URL
auto-detection ([#1465][1465]).
* Crash when `XDG_ACTIVATION_TOKEN` is set, but compositor does not
support XDG activation ([#1493][1493]).
[1436]: https://codeberg.org/dnkl/foot/issues/1436
[1464]: https://codeberg.org/dnkl/foot/issues/1464
[1465]: https://codeberg.org/dnkl/foot/issues/1465
[1493]: https://codeberg.org/dnkl/foot/pulls/1493
### Security

View file

@ -1701,7 +1701,7 @@ wayl_win_init(struct terminal *term, const char *token)
wl_surface_commit(win->surface.surf);
/* Complete XDG startup notification */
if (token && wayl->xdg_activation)
if (token && wayl->xdg_activation != NULL)
xdg_activation_v1_activate(wayl->xdg_activation, token, win->surface.surf);
if (!wayl_win_subsurface_new(win, &win->overlay, false)) {