diff options
author | Roy Want <roywant@google.com> | 2019-08-19 13:19:20 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-08-19 13:19:20 -0700 |
commit | 73535c4e918eb582092c740326b160777b44e077 (patch) | |
tree | b317930e89970c76c88b893e73abdc03740db74b /service | |
parent | a0107b5554f7ed39478418940c9b1c2315a121cb (diff) | |
parent | 4c940a14b706f93e2094e1d36caef62f060fd8b5 (diff) |
Merge "Removing privileged context requirement for civic location (server)" into qt-r1-dev
am: 4c940a14b7
Change-Id: I34b3cf6cd42827a1e4fdac4d00ed35fa8ed2be1e
Diffstat (limited to 'service')
-rw-r--r-- | service/java/com/android/server/wifi/rtt/RttServiceImpl.java | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/service/java/com/android/server/wifi/rtt/RttServiceImpl.java b/service/java/com/android/server/wifi/rtt/RttServiceImpl.java index 19ae1540e..d69ce8f00 100644 --- a/service/java/com/android/server/wifi/rtt/RttServiceImpl.java +++ b/service/java/com/android/server/wifi/rtt/RttServiceImpl.java @@ -1178,16 +1178,11 @@ public class RttServiceImpl extends IWifiRttManager.Stub { "ResponderLocation: lci/lcr parser failed exception -- " + e); } // Clear LCI and LCR data if the location data should not be retransmitted, - // has a retention expiration time, contains no useful data, or did not parse. - if (responderLocation == null) { + // has a retention expiration time, contains no useful data, or did not parse, + // or the caller is not in a privileged context. + if (responderLocation == null || !isCalledFromPrivilegedContext) { lci = null; lcr = null; - } else if (!isCalledFromPrivilegedContext) { - // clear the raw lci and lcr buffers and civic location data if the - // caller is not in a privileged context. - lci = null; - lcr = null; - responderLocation.setCivicLocationSubelementDefaults(); } if (resultForRequest.successNumber <= 1 && resultForRequest.distanceSdInMm != 0) { |