Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bda5dc42 authored by Devin Moore's avatar Devin Moore Committed by Automerger Merge Worker
Browse files

Merge "AudioService: catch RuntimeException for IServiceManager.getService"...

Merge "AudioService: catch RuntimeException for IServiceManager.getService" am: d884be6c am: 31195841 am: fd32f3e6

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2069476



Change-Id: I35ad97ec72f1ec54c8ad701e5e6ffb02e504175f
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 6ffed63d fd32f3e6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -11456,7 +11456,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>();
        }
        }
    }
    }