diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-07-31 21:57:58 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2017-07-31 21:57:58 -0300 |
commit | af6f222b7997e1d4f7e0b1fc512d530151dd0783 (patch) | |
tree | 2becf6aa09daf9ef5ef63eb72c1ea9b8a74e794f /editor | |
parent | 85088275c5e6db63755e8dfd23d5f53d2d5c96ef (diff) |
Fix possible division by zero crashes on the wav importer
Diffstat (limited to 'editor')
-rw-r--r-- | editor/import/resource_importer_wav.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/import/resource_importer_wav.cpp b/editor/import/resource_importer_wav.cpp index 18c4bed5dd..8cb712cb78 100644 --- a/editor/import/resource_importer_wav.cpp +++ b/editor/import/resource_importer_wav.cpp @@ -291,7 +291,7 @@ Error ResourceImporterWAV::import(const String &p_source_file, const String &p_s bool limit_rate = p_options["force/max_rate"]; int limit_rate_hz = p_options["force/max_rate_hz"]; - if (limit_rate && rate > limit_rate_hz) { + if (limit_rate && rate > limit_rate_hz && rate > 0 && frames > 0) { //resampleeee!!! int new_data_frames = frames * limit_rate_hz / rate; Vector<float> new_data; @@ -356,7 +356,7 @@ Error ResourceImporterWAV::import(const String &p_source_file, const String &p_s bool trim = p_options["edit/trim"]; - if (trim && !loop) { + if (trim && !loop && format_channels > 0) { int first = 0; int last = (frames * format_channels) - 1; |