git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12602
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
wxImage wxXPMDecoder::ReadFile(wxInputStream& stream)
{
size_t length = stream.GetSize();
wxImage wxXPMDecoder::ReadFile(wxInputStream& stream)
{
size_t length = stream.GetSize();
- wxCHECK_MSG(length != 0, wxNullImage, wxT("Cannot read XPM from stream of unknown size"));
+ wxCHECK_MSG( length != 0, wxNullImage,
+ wxT("Cannot read XPM from stream of unknown size") );
- char *xpm_buffer = new char[length+1];
- char *p, *q;
- size_t i;
+ // use a smart buffer to be sure to free memory even when we return on
+ // error
+ wxCharBuffer buffer(length);
+ char *xpm_buffer = (char *)buffer.data();
if ( stream.Read(xpm_buffer, length).LastError() == wxSTREAM_READ_ERROR )
return wxNullImage;
xpm_buffer[length] = '\0';
if ( stream.Read(xpm_buffer, length).LastError() == wxSTREAM_READ_ERROR )
return wxNullImage;
xpm_buffer[length] = '\0';
/*
* Remove comments from the file:
*/
/*
* Remove comments from the file:
*/
for (p = xpm_buffer; *p != '\0'; p++)
{
if ( (*p == '"') || (*p == '\'') )
for (p = xpm_buffer; *p != '\0'; p++)
{
if ( (*p == '"') || (*p == '\'') )
/*
* Remove unquoted characters:
*/
/*
* Remove unquoted characters:
*/
for (p = xpm_buffer; *p != '\0'; p++)
{
if ( *p != '"' )
for (p = xpm_buffer; *p != '\0'; p++)
{
if ( *p != '"' )
*/
wxImage img = ReadData(xpm_lines);
*/
wxImage img = ReadData(xpm_lines);
#ifdef __WIN16__
delete[] (char**) xpm_lines;
#else
delete[] xpm_lines;
#endif
#ifdef __WIN16__
delete[] (char**) xpm_lines;
#else
delete[] xpm_lines;
#endif
return img;
}
#endif // wxUSE_STREAMS
return img;
}
#endif // wxUSE_STREAMS