Skip to content

Commit

Permalink
bump minor version.
Browse files Browse the repository at this point in the history
  • Loading branch information
syoyo committed Jun 28, 2024
1 parent 8a269aa commit cf97676
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiny_gltf.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

// Version: - v2.8.10
// Version: - v2.9.*
// See https://github.com/syoyo/tinygltf/releases for release history.
//
// Tiny glTF loader is using following third party libraries:
Expand Down Expand Up @@ -6834,7 +6834,7 @@ bool TinyGLTF::LoadBinaryFromMemory(Model *model, std::string *err,
// 'SHOULD' in glTF spec means 'RECOMMENDED',
// So there is a situation that Chunk1(BIN) is composed of zero-sized BIN data
// (chunksize(0) + binformat(BIN) = 8bytes).
//
//
if ((header_and_json_size + 8ull) > uint64_t(length)) {
if (err) {
(*err) =
Expand Down

0 comments on commit cf97676

Please sign in to comment.