From 61821405d8f48117b82ce839c7196eb68c2d8266 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 20:36:07 +0100 Subject: Style and warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/gamma-coopgamma.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/gamma-coopgamma.c') diff --git a/src/gamma-coopgamma.c b/src/gamma-coopgamma.c index 387e29b..4e579c2 100644 --- a/src/gamma-coopgamma.c +++ b/src/gamma-coopgamma.c @@ -100,12 +100,14 @@ print_error(struct gamma_state *state) static int coopgamma_init(struct gamma_state **state) { - *state = malloc(sizeof(struct gamma_state)); + struct gamma_state *s; + struct signal_blockage signal_blockage; + + *state = malloc(sizeof(**state)); if (*state == NULL) return -1; - struct gamma_state *s = *state; + s = *state; - struct signal_blockage signal_blockage; memset(s, 0, sizeof(*s)); if (libcoopgamma_context_initialise(&s->ctx)) { perror("libcoopgamma_context_initialise"); -- cgit v1.2.3-70-g09d2