1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Fix alignment edge cases of cue points in AIFF files

This commit is contained in:
hogliux 2015-06-25 09:44:17 +01:00
parent 512d0baf67
commit 2860f66953

View file

@ -341,10 +341,10 @@ namespace AiffFileHelpers
out.writeByte ((char) labelLength + 1);
out.write (label.toUTF8(), labelLength);
out.writeByte (0);
}
if ((out.getDataSize() & 1) != 0)
out.writeByte (0);
if ((out.getDataSize() & 1) != 0)
out.writeByte (0);
}
}
}
}