X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/19c0043f74cb81d3dc32a8c58be3f51654ffddbc..a43a9e5521440dbb28037646ed4a07125c8823a9:/src/common/xpmdecod.cpp diff --git a/src/common/xpmdecod.cpp b/src/common/xpmdecod.cpp index 8d38a3132e..82a415f696 100644 --- a/src/common/xpmdecod.cpp +++ b/src/common/xpmdecod.cpp @@ -122,8 +122,6 @@ bool wxXPMDecoder::CanRead(wxInputStream& stream) if ( !stream.Read(buf, WXSIZEOF(buf)) ) return false; - stream.SeekI(-(wxFileOffset)WXSIZEOF(buf), wxFromCurrent); - return memcmp(buf, "/* XPM */", WXSIZEOF(buf)) == 0; }