diff options
author | TreeHugger Robot <treehugger-gerrit@google.com> | 2019-08-19 18:17:46 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2019-08-19 18:17:46 +0000 |
commit | 4c940a14b706f93e2094e1d36caef62f060fd8b5 (patch) | |
tree | 42bb35de5761a60fda2b999d465e32d00a6e8315 | |
parent | 952fc8f58d8034153bfb45f6139dfc518d59709a (diff) | |
parent | 80102fffcd9d43b1238d5c6f5406e9429f1e869c (diff) |
Merge "Removing privileged context requirement for civic location (server)" into qt-r1-dev
-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) { |