diff options
author | Lalit Shankar Chowdhury <lalitshankarch@gmail.com> | 2024-09-27 21:04:46 +0530 |
---|---|---|
committer | Lalit Shankar Chowdhury <lalitshankarch@gmail.com> | 2024-09-27 21:04:46 +0530 |
commit | 2caaa2cae5c05e48274886c2968475f24d979c99 (patch) | |
tree | 0e7509b730867fa0a85c43c331f28da2c5f37801 /modules/vorbis | |
parent | 76a135926aef1f02f27e4e09093787f2c670956d (diff) | |
download | redot-engine-2caaa2cae5c05e48274886c2968475f24d979c99.tar.gz |
Vorbis: Remove redundant bounds check
Diffstat (limited to 'modules/vorbis')
-rw-r--r-- | modules/vorbis/resource_importer_ogg_vorbis.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/vorbis/resource_importer_ogg_vorbis.cpp b/modules/vorbis/resource_importer_ogg_vorbis.cpp index 7b8d14741b..729a6f5561 100644 --- a/modules/vorbis/resource_importer_ogg_vorbis.cpp +++ b/modules/vorbis/resource_importer_ogg_vorbis.cpp @@ -155,7 +155,6 @@ Ref<AudioStreamOggVorbis> ResourceImporterOggVorbis::load_from_buffer(const Vect char *sync_buf = ogg_sync_buffer(&sync_state, OGG_SYNC_BUFFER_SIZE); err = ogg_sync_check(&sync_state); ERR_FAIL_COND_V_MSG(err != 0, Ref<AudioStreamOggVorbis>(), "Ogg sync error " + itos(err)); - ERR_FAIL_COND_V(cursor > size_t(file_data.size()), Ref<AudioStreamOggVorbis>()); size_t copy_size = file_data.size() - cursor; if (copy_size > OGG_SYNC_BUFFER_SIZE) { copy_size = OGG_SYNC_BUFFER_SIZE; |