From 36cdae8ee2a3868d9242a28c768607e30a28b538 Mon Sep 17 00:00:00 2001 From: Ehsan Akhgari Date: Sat, 30 Mar 2013 14:20:26 -0400 Subject: [PATCH] Bug 856341 - Make gfxFcFontEntry::mPatterns fallible; r=jfkthame --- gfx/thebes/gfxPangoFonts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/thebes/gfxPangoFonts.cpp b/gfx/thebes/gfxPangoFonts.cpp index 4ed0b31f3289..23726f468e39 100644 --- a/gfx/thebes/gfxPangoFonts.cpp +++ b/gfx/thebes/gfxPangoFonts.cpp @@ -195,7 +195,7 @@ protected: // One pattern is the common case and some subclasses rely on successful // addition of the first element to the array. - nsAutoTArray,1> mPatterns; + AutoFallibleTArray,1> mPatterns; bool mSkipHarfBuzz; bool mSkipGraphiteCheck;