mirror of
https://github.com/transmission/transmission
synced 2024-12-25 17:17:31 +00:00
fix memory error reported by John_Clay
This commit is contained in:
parent
930199dbeb
commit
7ce8312ddc
1 changed files with 3 additions and 3 deletions
|
@ -133,9 +133,9 @@ TrOpenFile( int i, const char * filename, int write )
|
|||
|
||||
/* create subfolders, if any */
|
||||
if( write ) {
|
||||
char * dir = dirname( tr_strdup( filename ) );
|
||||
const int val = tr_mkdirp( dir, 0700 );
|
||||
tr_free( dir );
|
||||
char * tmp = tr_strdup( filename );
|
||||
const int val = tr_mkdirp( dirname(tmp), 0700 );
|
||||
tr_free( tmp );
|
||||
if( val )
|
||||
return tr_ioErrorFromErrno( );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue