aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-coopgamma.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gamma-coopgamma.c')
-rw-r--r--src/gamma-coopgamma.c8
1 files changed, 5 insertions, 3 deletions
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");