]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/anidecod.cpp
Correct wxDirExists() check in OS X wxFileSystemWatcher implementation.
[wxWidgets.git] / src / common / anidecod.cpp
index 9d202672c66e6dd3f5c190c4830a221ed3542763..2cb075948d1070c40385019f4c0d7fedfc44c94e 100644 (file)
@@ -127,6 +127,11 @@ bool wxANIDecoder::DoCanRead(wxInputStream& stream) const
     wxInt32 anih32;
     memcpy( &anih32, "anih", 4 );
 
+    if ( stream.SeekI(0) == wxInvalidOffset )
+    {
+        return false;
+    }
+
     if ( !stream.Read(&FCC1, 4) )
         return false;
 
@@ -220,6 +225,11 @@ bool wxANIDecoder::Load( wxInputStream& stream )
     wxInt32 seq32;
     memcpy( &seq32, "seq ", 4 );
 
+    if ( stream.SeekI(0) == wxInvalidOffset)
+    {
+        return false;
+    }
+
     if ( !stream.Read(&FCC1, 4) )
         return false;
     if ( FCC1 != riff32 )