aboutsummaryrefslogtreecommitdiffstats
path: root/src/location-manual.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/location-manual.c')
-rw-r--r--src/location-manual.c11
1 files changed, 8 insertions, 3 deletions
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