Guard against potential NPE.
Change-Id: I379da1f478b1b1fd1e488dbeff249cc10e3d48d5
This commit is contained in:
parent
5a3aebbd2d
commit
861c5c8c9e
@ -525,7 +525,9 @@ public abstract class EmailServiceStub extends IEmailService.Stub implements IEm
|
|||||||
// 3. loop through the available messages and send them
|
// 3. loop through the available messages and send them
|
||||||
while (c.moveToNext()) {
|
while (c.moveToNext()) {
|
||||||
long messageId = -1;
|
long messageId = -1;
|
||||||
moveToSentValues.remove(EmailContent.MessageColumns.FLAGS);
|
if (moveToSentValues != null) {
|
||||||
|
moveToSentValues.remove(EmailContent.MessageColumns.FLAGS);
|
||||||
|
}
|
||||||
try {
|
try {
|
||||||
messageId = c.getLong(0);
|
messageId = c.getLong(0);
|
||||||
// Don't send messages with unloaded attachments
|
// Don't send messages with unloaded attachments
|
||||||
|
Loading…
Reference in New Issue
Block a user