Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Unified Diff: webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java

Issue 2963363002: Fix null ref in NetworkMonitorAutoDetect if Connectivity Manager service is unavailable (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java
diff --git a/webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java b/webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java
index 77b77be95c1d7a5ea3eee900acff56d09a028c2a..9cae2ef33117767be360f593ded696ea0974a805 100644
--- a/webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java
+++ b/webrtc/sdk/android/api/org/webrtc/NetworkMonitorAutoDetect.java
@@ -590,8 +590,13 @@ public class NetworkMonitorAutoDetect extends BroadcastReceiver {
}
List<NetworkInformation> getActiveNetworkList() {
+ List<NetworkInformation> connectivityManagerList =
+ connectivityManagerDelegate.getActiveNetworkList();
+ if (connectivityManagerList == null) {
+ return null;
magjed_webrtc 2017/07/07 11:49:07 Shouldn't we still add possible entries from wifiD
+ }
ArrayList<NetworkInformation> result =
- new ArrayList<NetworkInformation>(connectivityManagerDelegate.getActiveNetworkList());
+ new ArrayList<NetworkInformation>(connectivityManagerList);
if (wifiDirectManagerDelegate != null) {
result.addAll(wifiDirectManagerDelegate.getActiveNetworkList());
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698