Don't try to enable sequential mode on non-existant files on GTK

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15222

(Cherry-picked from c26863cc1e)
This commit is contained in:
Ian McInerney
2023-07-18 21:04:16 +01:00
parent cc2637b310
commit 20a5b2d4c4
+2 -1
View File
@@ -30,7 +30,8 @@ FILE* KIPLATFORM::IO::SeqFOpen( const wxString& aPath, const wxString& aMode )
{
FILE* fp = wxFopen( aPath, aMode );
posix_fadvise( fileno( fp ), 0, 0, POSIX_FADV_SEQUENTIAL );
if( fp )
posix_fadvise( fileno( fp ), 0, 0, POSIX_FADV_SEQUENTIAL );
return fp;
}