summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packaging/capi-location-manager.spec2
-rwxr-xr-xsrc/locations.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/packaging/capi-location-manager.spec b/packaging/capi-location-manager.spec
index 4341f9c..72592cb 100644
--- a/packaging/capi-location-manager.spec
+++ b/packaging/capi-location-manager.spec
@@ -1,6 +1,6 @@
Name: capi-location-manager
Summary: A Location Manager library in Tizen Native API
-Version: 0.8.1
+Version: 0.8.2
Release: 1
Group: Location/API
License: Apache-2.0
diff --git a/src/locations.c b/src/locations.c
index 3fe8082..36165c5 100755
--- a/src/locations.c
+++ b/src/locations.c
@@ -1235,6 +1235,8 @@ EXPORT_API int location_manager_get_distance(double start_latitude, double start
LocationPosition *end = location_position_new(0, end_latitude, end_longitude, 0, LOCATION_STATUS_2D_FIX);
ret = location_get_distance(start, end, &u_distance);
+ location_position_free(start);
+ location_position_free(end);
if (ret != LOCATION_ERROR_NONE)
return __convert_error_code(ret); //LCOV_EXCL_LINE