egl: fix memory leak

I have noticed this with LeakSanitizer, I hope these are all occurrences.
This commit is contained in:
Ilia Bozhinov 2020-12-10 23:25:16 +01:00 committed by Simon Ser
parent e9c1f0f7d3
commit 12ede67c62
1 changed files with 2 additions and 0 deletions

View File

@ -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;