Merge pull request #32 from devnexen/uninitialize2

Vk_LoadPic fix unitialized var.
This commit is contained in:
Denis Pauk 2022-11-19 13:25:46 +02:00 committed by GitHub
commit 646b65dfa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -1135,6 +1135,7 @@ Vk_LoadPic(const char *name, byte *pic, int width, int realwidth,
image->registration_sequence = registration_sequence; image->registration_sequence = registration_sequence;
// zero-clear Vulkan texture handle // zero-clear Vulkan texture handle
QVVKTEXTURE_CLEAR(image->vk_texture); QVVKTEXTURE_CLEAR(image->vk_texture);
texBuffer = 0;
image->width = realwidth; image->width = realwidth;
image->height = realheight; image->height = realheight;
image->type = type; image->type = type;

View File

@ -980,7 +980,7 @@ cluster
void R_MarkLeaves (void) void R_MarkLeaves (void)
{ {
const byte *vis; const byte *vis;
byte fatvis[MAX_MAP_LEAFS/8]; YQ2_ALIGNAS_TYPE(int) byte fatvis[MAX_MAP_LEAFS/8];
mnode_t *node; mnode_t *node;
int i; int i;
mleaf_t *leaf; mleaf_t *leaf;