(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:
@@ -365,7 +365,7 @@ static void SetGlyphPtr(FontSize size, WChar key, const GlyphEntry *glyph)
|
||||
|
||||
void *AllocateFont(size_t size)
|
||||
{
|
||||
return malloc(size);
|
||||
return MallocT<byte>(size);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user