From 6c350799b22ddc5cb89467c95692437bbf0116b9 Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Tue, 26 Apr 2022 09:43:54 +0200 Subject: Zero-initialize structs in init functions Ensures there is no field left to its previous undefined value after calling an init function. --- render/allocator/allocator.c | 1 + render/wlr_renderer.c | 2 ++ render/wlr_texture.c | 2 ++ 3 files changed, 5 insertions(+) (limited to 'render') diff --git a/render/allocator/allocator.c b/render/allocator/allocator.c index 2c75421f..83e836ae 100644 --- a/render/allocator/allocator.c +++ b/render/allocator/allocator.c @@ -18,6 +18,7 @@ void wlr_allocator_init(struct wlr_allocator *alloc, const struct wlr_allocator_interface *impl, uint32_t buffer_caps) { assert(impl && impl->destroy && impl->create_buffer); + memset(alloc, 0, sizeof(*alloc)); alloc->impl = impl; alloc->buffer_caps = buffer_caps; wl_signal_init(&alloc->events.destroy); diff --git a/render/wlr_renderer.c b/render/wlr_renderer.c index 2b5cf994..478db745 100644 --- a/render/wlr_renderer.c +++ b/render/wlr_renderer.c @@ -39,6 +39,8 @@ void wlr_renderer_init(struct wlr_renderer *renderer, assert(impl->render_quad_with_matrix); assert(impl->get_shm_texture_formats); assert(impl->get_render_buffer_caps); + + memset(renderer, 0, sizeof(*renderer)); renderer->impl = impl; wl_signal_init(&renderer->events.destroy); diff --git a/render/wlr_texture.c b/render/wlr_texture.c index 2cdf08c5..36cbf136 100644 --- a/render/wlr_texture.c +++ b/render/wlr_texture.c @@ -1,12 +1,14 @@ #include #include #include +#include #include #include #include "types/wlr_buffer.h" void wlr_texture_init(struct wlr_texture *texture, const struct wlr_texture_impl *impl, uint32_t width, uint32_t height) { + memset(texture, 0, sizeof(*texture)); texture->impl = impl; texture->width = width; texture->height = height; -- cgit v1.2.3