mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-22 12:55:58 +01:00
wlr_renderer_destroy: fix renderer NULL check
renderer is checked for NULL, but was dereferenced before that. Found through static analysis
This commit is contained in:
parent
b3313b7f39
commit
4cc4412481
1 changed files with 4 additions and 1 deletions
|
@ -25,9 +25,12 @@ void wlr_renderer_init(struct wlr_renderer *renderer,
|
|||
}
|
||||
|
||||
void wlr_renderer_destroy(struct wlr_renderer *r) {
|
||||
if (!r) {
|
||||
return;
|
||||
}
|
||||
wlr_signal_emit_safe(&r->events.destroy, r);
|
||||
|
||||
if (r && r->impl && r->impl->destroy) {
|
||||
if (r->impl && r->impl->destroy) {
|
||||
r->impl->destroy(r);
|
||||
} else {
|
||||
free(r);
|
||||
|
|
Loading…
Reference in a new issue