summaryrefslogtreecommitdiff
path: root/audio/id3lib/files/patch-io_helpers.cpp
blob: e42abcb8552556b7fc8872731f6b3866ca3b60bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- src/io_helpers.cpp.orig	Sun Mar  2 07:23:00 2003
+++ src/io_helpers.cpp	Mon May 29 01:23:33 2006
@@ -363,9 +363,10 @@
     // Write the BOM: 0xFEFF
     unicode_t BOM = 0xFEFF;
     writer.writeChars((const unsigned char*) &BOM, 2);
+    const unsigned char* pdata = (const unsigned char*)data.c_str();
     for (size_t i = 0; i < size; i += 2)
     {
-      unicode_t ch = (data[i] << 8) | data[i+1];
+      unicode_t ch = (pdata[i] << 8) | pdata[i+1];
       writer.writeChars((const unsigned char*) &ch, 2);
     }
   }