X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9d0e21da25f89fa7eb269aee5db8d656d2da9c7c..e6ec579c77012dd0ff1e16b2385e2d3ccf1b911b:/src/common/gifdecod.cpp?ds=sidebyside diff --git a/src/common/gifdecod.cpp b/src/common/gifdecod.cpp index 3345366d7b..0a8a6f525b 100644 --- a/src/common/gifdecod.cpp +++ b/src/common/gifdecod.cpp @@ -446,7 +446,7 @@ bool wxGIFDecoder::CanRead() unsigned char buf[3]; m_f->Read(buf, 3); - stream.SeekI(-3, wxFromCurrent); + m_f->SeekI(-3, wxFromCurrent); return (memcmp(buf, "GIF", 3) == 0); }