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

Commit 0e3fccf1 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Icef599ec into eclair-mr2

* changes:
  null check
parents 2c766498 cef599ec
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 {