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

Commit 8d97acfd authored by Priti Aghera's avatar Priti Aghera Committed by Android Git Automerger
Browse files

am 6053b4ed: Fixed a NPE

* commit '6053b4ed':
  Fixed a NPE
parents 07aeabed 6053b4ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -322,7 +322,7 @@ public class BluetoothOppUtility {
    static void closeSendFileInfo(Uri uri) {
        if (D) Log.d(TAG, "closeSendFileInfo: uri=" + uri);
        BluetoothOppSendFileInfo info = sSendFileMap.remove(uri);
        if (info != null) {
        if (info != null && info.mInputStream != null) {
            try {
                info.mInputStream.close();
            } catch (IOException ignored) {