Set c to the result of the query.

Change-Id: I5b8c935aedcdd86d756ee7de70088f2c8db179d5
This commit is contained in:
Mindy Pereira 2012-01-12 14:25:49 -08:00
parent 0c550c343f
commit e9e865345e
1 changed files with 2 additions and 1 deletions

View File

@ -1821,7 +1821,8 @@ public class EmailProvider extends ContentProvider {
if (selection != null || selectionArgs != null) {
throw new IllegalArgumentException("UI queries can't have selection/args");
}
return uiQuery(match, uri, projection);
c = uiQuery(match, uri, projection);
return c;
case ACCOUNT_DEFAULT_ID:
// Start with a snapshot of the cache
Map<String, Cursor> accountCache = mCacheAccount.getSnapshot();