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

Commit 820e9643 authored by Wink Saville's avatar Wink Saville Committed by android code review
Browse files

Merge "Plug a fd leak."

parents fb4c7e43 a63bf423
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -110,6 +110,12 @@ class VoiceMailConstants {
            Log.w(LOG_TAG, "Exception in Voicemail parser " + e);
        } catch (IOException e) {
            Log.w(LOG_TAG, "Exception in Voicemail parser " + e);
        } finally {
            try {
                if (vmReader != null) {
                    vmReader.close();
                }
            } catch (IOException e) {}
        }
    }
}