(svn r11597) -Change: replace all remaining instances of (re|m|c)alloc with (Re|M|C)allocT and add a check for out-of-memory situations to the *allocT functions.
This commit is contained in:
@@ -298,7 +298,7 @@ public:
|
||||
/** all allocation should happen here */
|
||||
static FORCEINLINE CHdr* RawAlloc(bsize_t num_bytes)
|
||||
{
|
||||
return (CHdr*)malloc(num_bytes);
|
||||
return (CHdr*)MallocT<byte>(num_bytes);
|
||||
}
|
||||
|
||||
/** all deallocations should happen here */
|
||||
|
Reference in New Issue
Block a user