2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Merge branch 'n1073645-extractWavFix'

This commit is contained in:
n1474335
2020-03-05 17:11:38 +00:00

View File

@@ -3042,7 +3042,7 @@ export function extractWAV(bytes, offset) {
stream.moveTo(4);
// Move to file size.
stream.moveTo(stream.readInt(4, "le"));
stream.moveTo(stream.readInt(4, "le") + 8);
return stream.carve();
}