mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-07-24 15:09:03 +00:00
BasisThumbProvider::GetThumbnail() allocates rgbBuf with malloc() but freed it with delete, which is a mismatched-allocator (and delete on a void*) undefined behavior. Use free() to match the allocation, as is already done for the sibling 'data' buffer. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>