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

Commit 69020b73 authored by Mark Wagner's avatar Mark Wagner Committed by Android Git Automerger
Browse files

am fe537b3f: am 0e3fccf1: Merge change Icef599ec into eclair-mr2

Merge commit 'fe537b3f'

* commit 'fe537b3f':
  null check
parents 4788b314 fe537b3f
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -424,6 +424,9 @@ public class PduPersister {
                    // faster.
                    if ("text/plain".equals(type) || "application/smil".equals(type)) {
                        String text = c.getString(PART_COLUMN_TEXT);
                        if (text == null) {
                            text = "";
                        }
                        byte [] blob = new EncodedStringValue(text).getTextString();
                        baos.write(blob, 0, blob.length);
                    } else {