From b27acd687800499324381648036edd098c996524 Mon Sep 17 00:00:00 2001 From: Jon Lund Steffensen Date: Wed, 11 Oct 2017 20:36:41 -0700 Subject: Allocate module data in init functions --- src/location-manual.c | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'src/location-manual.c') diff --git a/src/location-manual.c b/src/location-manual.c index d7ba37a..f459b27 100644 --- a/src/location-manual.c +++ b/src/location-manual.c @@ -34,10 +34,14 @@ static int -location_manual_init(location_manual_state_t *state) +location_manual_init(location_manual_state_t **state) { - state->loc.lat = NAN; - state->loc.lon = NAN; + *state = malloc(sizeof(location_manual_state_t)); + if (*state == NULL) return -1; + + location_manual_state_t *s = *state; + s->loc.lat = NAN; + s->loc.lon = NAN; return 0; } @@ -57,6 +61,7 @@ location_manual_start(location_manual_state_t *state) static void location_manual_free(location_manual_state_t *state) { + free(state); } static void -- cgit v1.2.3-70-g09d2