Commit d27169fb authored by Laurent Aimar's avatar Laurent Aimar

Fixed es_out timeshift under windows.

A missing 'b' flag in fdopen.
parent fe657df0
...@@ -1552,7 +1552,7 @@ static FILE *GetTmpFile( char **ppsz_file, const char *psz_path ) ...@@ -1552,7 +1552,7 @@ static FILE *GetTmpFile( char **ppsz_file, const char *psz_path )
return NULL; return NULL;
/* */ /* */
f = fdopen( fd, "rw+" ); f = fdopen( fd, "r+b" );
if( !f ) if( !f )
close( fd ); close( fd );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment