diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-03-05 22:55:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-05 22:55:16 +0100 |
commit | 2e79ec973f7e28de7ed550fe74f170c92d9dc298 (patch) | |
tree | 49276ca12a464bda28adc20aec2f8e97e2e21b65 /platform/android/export/export.cpp | |
parent | 88355b2719fe7a103e6da82c1f58361190f2e1f1 (diff) | |
parent | 3fdbdd838074b3f6b78e6f6c2fae1f3a407c2446 (diff) |
Merge pull request #26626 from rluders/misleading-error-message-export
Fixing misleading error message when trying to export
Diffstat (limited to 'platform/android/export/export.cpp')
-rw-r--r-- | platform/android/export/export.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 8ffd355219..0f2455914d 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1489,6 +1489,10 @@ public: } } + if (!FileAccess::exists(p_path.get_base_dir())) { + return ERR_FILE_BAD_PATH; + } + FileAccess *src_f = NULL; zlib_filefunc_def io = zipio_create_io_from_file(&src_f); |