aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/it/itfile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/it/itfile.cpp')
-rw-r--r--taglib/it/itfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/taglib/it/itfile.cpp b/taglib/it/itfile.cpp
index 183a4f00..3b2ca876 100644
--- a/taglib/it/itfile.cpp
+++ b/taglib/it/itfile.cpp
@@ -134,9 +134,9 @@ bool IT::File::save()
// it's actually not really stated if the message needs a
// terminating NUL but it does not hurt to add one:
+ if(message.size() > 7999)
+ message.resize(7999);
message.append((char)0);
- if(message.size() > 8000)
- message.resize(8000);
ushort special = 0;
ushort messageLength = 0;