From 0dc24ab3a747ca97a23bec6eb8d0123d2b5f9c19 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Thu, 24 Feb 2022 17:04:39 +0100 Subject: [PATCH] Fix declaration of offset --- include/assimp/Hash.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/assimp/Hash.h b/include/assimp/Hash.h index 1a5d1f08d..5a02f5f31 100644 --- a/include/assimp/Hash.h +++ b/include/assimp/Hash.h @@ -75,7 +75,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. inline uint32_t SuperFastHash (const char * data, uint32_t len = 0, uint32_t hash = 0) { uint32_t tmp; int rem; - +size_t offset; + if (!data) return 0; if (!len)len = (uint32_t)::strlen(data); @@ -95,7 +96,7 @@ int rem; switch (rem) { case 3: hash += get16bits (data); hash ^= hash << 16; - size_t offset = static_cast(sizeof(uint16_t)); + offset = static_cast(sizeof(uint16_t)); if (offset < 0) { return 0; }