1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-02 17:23:18 +02:00

Improve a comment.

This commit is contained in:
v.audacity 2013-06-29 00:27:43 +00:00
parent f27ba35bc1
commit 8ad21677b8

View File

@ -800,7 +800,9 @@ void ExportPCM::AddID3Chunk(wxString fName, Tags *tags, int sf_format)
id3_tag_delete(tp);
return;
}
memset(buffer, 0, len); // Be clean for ending odd UTF16 content correctly.
// Zero all locations, for ending odd UTF16 content
// correctly, i.e., two '\0's at the end.
memset(buffer, 0, len);
id3_tag_render(tp, buffer);