egl: fix memory leak

I have noticed this with LeakSanitizer, I hope these are all occurrences.
master
Ilia Bozhinov 4 years ago committed by Simon Ser
parent e9c1f0f7d3
commit 12ede67c62

@ -166,6 +166,7 @@ static void init_dmabuf_formats(struct wlr_egl *egl) {
}
free(modifiers);
free(external_only);
}
char *str_formats = malloc(formats_len * 5 + 1);
@ -783,6 +784,7 @@ static int get_egl_dmabuf_modifiers(struct wlr_egl *egl, int format,
*modifiers, *external_only, &num)) {
wlr_log(WLR_ERROR, "Failed to query dmabuf modifiers");
free(*modifiers);
free(*external_only);
return -1;
}
return num;

Loading…
Cancel
Save