summaryrefslogtreecommitdiff
path: root/location/LocationAPI.cpp
diff options
context:
space:
mode:
authorKevin Tang <zhikait@codeaurora.org>2017-04-28 16:31:43 -0700
committerKevin Tang <zhikait@codeaurora.org>2017-04-28 16:31:46 -0700
commit222094ce77cc7a711f6e5af57bbd9fef473ae6ec (patch)
treecda0d9e259ef1b01e2e89f748e7e5b65f20578a7 /location/LocationAPI.cpp
parent6cf01fac929e99f91df947d1791df7790ac956c1 (diff)
downloadgps-222094ce77cc7a711f6e5af57bbd9fef473ae6ec.tar.gz
Prevent print of uninitialized string
If uninitialized string gets printed, this can cause a crash. Bug: 37218688 CRs-fixed: 2032144 Change-Id: I7c34b6f84f414410c52fc59f73053892060b0874
Diffstat (limited to 'location/LocationAPI.cpp')
-rw-r--r--location/LocationAPI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/location/LocationAPI.cpp b/location/LocationAPI.cpp
index 3086adc..60a46fe 100644
--- a/location/LocationAPI.cpp
+++ b/location/LocationAPI.cpp
@@ -82,7 +82,7 @@ static void* loadLocationInterface(const char* library, const char* name) {
return NULL;
}
getLocationInterface* getter = NULL;
- const char *error;
+ const char *error = NULL;
dlerror();
void *handle = dlopen(library, RTLD_NOW);
if (NULL == handle || (error = dlerror()) != NULL) {