Deleting all the rows from ContentProvider using delete() statement gives the Coverity error.
Explicit null dereferenced (FORWARD_NULL)
Passing null pointer selection to delete, which dereferences it.
String selection = null;
String[] selectionArgs = null;
mContentResolver.delete(MyContentProvider.MY_CONTENT_URI, selection, selectionArgs);
Is there any way to fix this Coverity issue ??