(svn r8066) - Codechange: MallocT(), CallocT(), ReallocT() now return the pointer to allocated memory instead of modifying the pointer given as parameter
This commit is contained in:
@@ -636,7 +636,7 @@ static inline DIR *dir_calloc(void)
|
||||
DIR *d;
|
||||
|
||||
if (_global_dir_is_in_use) {
|
||||
CallocT(&d, 1);
|
||||
d = CallocT<DIR>(1);
|
||||
} else {
|
||||
_global_dir_is_in_use = true;
|
||||
d = &_global_dir;
|
||||
|
Reference in New Issue
Block a user