]> git.saurik.com Git - wxWidgets.git/commitdiff
added permission error to the 'expected' error codes, removed assert, as this leads...
authorStefan Csomor <csomor@advancedconcepts.ch>
Sat, 5 Nov 2005 07:39:46 +0000 (07:39 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Sat, 5 Nov 2005 07:39:46 +0000 (07:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36089 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/dirmac.cpp

index f029c2bd389f90c664ba5d565cdb6b3d051f0110..8669577a49a317bdf3fd9dce9ef4aceae14bf140 100644 (file)
@@ -154,10 +154,13 @@ bool wxDirData::Read(wxString *filename)
         UInt32 fetched = 0;
 
         err = FSGetCatalogInfoBulk( m_iterator, 1, &fetched, NULL, kFSCatInfoNodeFlags | kFSCatInfoFinderInfo , &catalogInfo , &fileRef, NULL, &uniname );
+        
+        // expected error codes 
+        
         if ( errFSNoMoreItems == err )
             return false ;
-
-        wxASSERT( noErr == err ) ;
+        if ( afpAccessDenied == err )
+            return false ;
 
         if ( noErr != err )
             break ;