X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8a5b9745fb8eb40595731a86106ad784eb6b1c76..ec7cd4c478ae1a192c21a89a41bd499e5bc0908a:/src/common/xpmdecod.cpp diff --git a/src/common/xpmdecod.cpp b/src/common/xpmdecod.cpp index 434e8dedf9..c4ad123d5c 100644 --- a/src/common/xpmdecod.cpp +++ b/src/common/xpmdecod.cpp @@ -114,6 +114,10 @@ license is as follows: #include "wx/intl.h" #include +#ifdef __VISUALC__ +#include +#endif + #include "wx/xpmdecod.h" #if wxUSE_STREAMS @@ -132,12 +136,13 @@ wxImage wxXPMDecoder::ReadFile(wxInputStream& stream) size_t length = stream.GetSize(); wxCHECK_MSG(length != 0, wxNullImage, wxT("Cannot read XPM from stream of unknown size")); - char *xpm_buffer = new char[length]; + char *xpm_buffer = new char[length+1]; char *p, *q; size_t i; if ( stream.Read(xpm_buffer, length).LastError() == wxSTREAM_READ_ERROR ) return wxNullImage; + xpm_buffer[length] = '\0'; /* * Remove comments from the file: