This commit is contained in:
minjaesong
2023-01-14 02:04:41 +09:00
parent 1c9e99bb66
commit f23dedc245
6 changed files with 159 additions and 120 deletions

View File

@@ -643,14 +643,8 @@ var Frame = {
},
readCRC: function (source) {
var result = source.readFull(2);
if (result.err) {
return {
err: result.err
}
}
var buf = result.buf;
if (buf.byteLength < 2) {
var buf = source.readFull(2)
if (buf.length < 2) {
return "mp3: error at readCRC";
}
},