mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-02 17:23:18 +02:00
Improve a comment.
This commit is contained in:
parent
f27ba35bc1
commit
8ad21677b8
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user