mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
(trunk libT) use tr_malloc() instead of malloc() in tr_loadFile() and in the fallback code for tr_valloc()
This commit is contained in:
parent
018b673acd
commit
4ecf0d36d1
1 changed files with 2 additions and 2 deletions
|
@ -461,7 +461,7 @@ tr_loadFile( const char * path,
|
|||
errno = err;
|
||||
return NULL;
|
||||
}
|
||||
buf = malloc( sb.st_size + 1 );
|
||||
buf = tr_malloc( sb.st_size + 1 );
|
||||
if( !buf )
|
||||
{
|
||||
const int err = errno;
|
||||
|
@ -1578,7 +1578,7 @@ tr_valloc( size_t bufLen )
|
|||
buf = valloc( allocLen );
|
||||
#endif
|
||||
if( !buf )
|
||||
buf = malloc( allocLen );
|
||||
buf = tr_malloc( allocLen );
|
||||
|
||||
return buf;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue