added intent null pointer check to FileManagers onActivityResult
This commit is contained in:
parent
72d92b19f7
commit
92d197b8cc
@ -414,7 +414,7 @@ public class IITC_FileManager {
|
||||
public void onActivityResult(final int resultCode, final Intent data) {
|
||||
mIitc.deleteResponseHandler(this);
|
||||
|
||||
if (resultCode != Activity.RESULT_OK) return;
|
||||
if (resultCode != Activity.RESULT_OK || data == null) return;
|
||||
|
||||
mData = data;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user