mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
add forgotten const cast
This commit is contained in:
parent
62bb3c95c8
commit
59a1b7a491
@ -979,7 +979,7 @@ ByteVector ByteVector::fromBase64(const ByteVector & input)
|
||||
|
||||
ByteVector output(len);
|
||||
|
||||
const unsigned char * src = (unsigned char*) input.data();
|
||||
const unsigned char * src = (const unsigned char*) input.data();
|
||||
unsigned char * dst = (unsigned char*)output.data();
|
||||
while(4<=len) {
|
||||
if(base64[src[0]]==0x80) break;
|
||||
|
Loading…
Reference in New Issue
Block a user