mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Use uintptr_t
for buffer size calculations
This commit is contained in:
parent
e3497311e0
commit
dee308f90c
@ -448,7 +448,7 @@ void SHN::File::read(AudioProperties::ReadStyle propertiesStyle)
|
||||
// auto chunkSize = read_uint_big32(header_bytes, 4);
|
||||
|
||||
const auto chunkData = header_bytes + 8;
|
||||
const auto size = header_size - 8;
|
||||
const uintptr_t size = header_size - 8;
|
||||
|
||||
// WAVE
|
||||
if(chunkID == 'RIFF') {
|
||||
|
Loading…
Reference in New Issue
Block a user