<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.3790.3959" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV><FONT face=Arial size=2>Here's a code fragment I'm using with TagLib, 
compiling in VS2003:</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>pictureFrame = 
static_cast&lt;TagLib::ID3v2::AttachedPictureFrame *&gt; 
(listOfMp3Frames.front());<BR>&nbsp;&nbsp;&nbsp;if 
(pictureFrame)<BR>&nbsp;&nbsp;&nbsp;{<BR>&nbsp;&nbsp;&nbsp;&nbsp;TagLib::ByteVector 
bv = pictureFrame-&gt;picture();<BR>&nbsp;&nbsp;&nbsp;&nbsp;char *data = 
bv.data();<BR>&nbsp;&nbsp;&nbsp;&nbsp;char *data2 = 
pictureFrame-&gt;picture().data(); // &lt;-- wrong value reported! </FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
<DIV><FONT face=Arial size=2>The variables data and data2 should actually report 
the same value, but data2 is wrong, whereas data is correct. Why is 
that?</FONT></DIV>
<DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV></BODY></HTML>