Fixed false allocation failed

This commit is contained in:
Gentaiii 2022-10-11 09:36:36 +00:00 committed by Simon Zeni
parent 221ee83d44
commit 11192e6930
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ struct wlr_vk_instance *vulkan_instance_create(size_t ext_count,
size_t extensions_len = 0;
const char **extensions = calloc(1 + ext_count, sizeof(*extensions));
if (extensions) {
if (!extensions) {
wlr_log_errno(WLR_ERROR, "allocation failed");
goto error;
}