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:
parent
cc2637b310
commit
20a5b2d4c4
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue