diff options
Diffstat (limited to 'gfx/graphite2/src/MozGrMalloc.h')
-rw-r--r-- | gfx/graphite2/src/MozGrMalloc.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gfx/graphite2/src/MozGrMalloc.h b/gfx/graphite2/src/MozGrMalloc.h deleted file mode 100644 index 73e5c674f..000000000 --- a/gfx/graphite2/src/MozGrMalloc.h +++ /dev/null @@ -1,20 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#ifndef MOZ_GR_MALLOC_H -#define MOZ_GR_MALLOC_H - -// Override malloc() and friends to call moz_malloc() etc, so that we get -// predictable, safe OOM crashes rather than relying on the code to handle -// allocation failures reliably. - -#include "mozilla/mozalloc.h" - -#define malloc moz_xmalloc -#define calloc moz_xcalloc -#define realloc moz_xrealloc -#define free moz_free - -#endif // MOZ_GR_MALLOC_H |