mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
remove redundant size specificier in mid usage
This commit is contained in:
parent
59a1b7a491
commit
c4a02a1799
@ -441,7 +441,7 @@ void Ogg::XiphComment::parse(const ByteVector &data)
|
||||
|
||||
// Parse key and value
|
||||
String key = String(entry.mid(0,sep), String::UTF8);
|
||||
String value = String(entry.mid(sep+1, commentLength-sep), String::UTF8);
|
||||
String value = String(entry.mid(sep+1), String::UTF8);
|
||||
addField(key, value, false);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user