Merge "AudioService: catch RuntimeException for IServiceManager.getService"

This commit is contained in:
Devin Moore
2022-05-05 15:53:17 +00:00
committed by Gerrit Code Review

View File

@@ -10619,7 +10619,7 @@ public class AudioService extends IAudioService.Stub
} }
} }
return pids; return pids;
} catch (RemoteException e) { } catch (RemoteException | RuntimeException e) {
return new HashSet<Integer>(); return new HashSet<Integer>();
} }
} }