diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-05-01 08:19:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-01 08:19:04 +0200 |
commit | ae41e35191cc64471f918318dc32428728c9c4bb (patch) | |
tree | 904f7611e51a9a0fa8f3e75f5556c89aa66396b5 /platform/android | |
parent | 8afc9c3938af385be17aab92ec5c4adcbfb0781a (diff) | |
parent | 8460d0678c28816f6f206f40b71de2510fab1ffc (diff) |
Merge pull request #27676 from qarmin/small_fixes_2
Small fixes to static analyzer bugs
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/export/export.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 2a3d0843a8..f45644f1eb 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1864,7 +1864,6 @@ public: return ERR_FILE_NOT_FOUND; } - ERR_FAIL_COND_V(!pkg, ERR_CANT_OPEN); int ret = unzGoToFirstFile(pkg); zlib_filefunc_def io2 = io; @@ -2204,7 +2203,6 @@ public: return ERR_FILE_NOT_FOUND; } - ERR_FAIL_COND_V(!tmp_unaligned, ERR_CANT_OPEN); ret = unzGoToFirstFile(tmp_unaligned); io2 = io; |