added intent null pointer check to FileManagers onActivityResult

This commit is contained in:
Philipp Schaefer 2014-03-06 14:10:53 +01:00
parent 72d92b19f7
commit 92d197b8cc

View File

@ -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;