From 919e9c34779fa2f5d946321a4a86f7f108229ec5 Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Tue, 26 Mar 2013 19:29:55 +0000 Subject: [PATCH] fix infinite recursion calling (non)virtual git-svn-id: http://skia.googlecode.com/svn/trunk@8398 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/core/SkFontHost.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/SkFontHost.cpp b/src/core/SkFontHost.cpp index a5a61c3..bafc45a 100644 --- a/src/core/SkFontHost.cpp +++ b/src/core/SkFontHost.cpp @@ -85,7 +85,7 @@ SkTypeface* SkFontMgr::matchFamilyStyle(const char familyName[], SkTypeface* SkFontMgr::matchFaceStyle(const SkTypeface* face, const SkFontStyle& fs) { - return this->matchFaceStyle(face, fs); + return this->onMatchFaceStyle(face, fs); } SkTypeface* SkFontMgr::createFromData(SkData* data, int ttcIndex) { -- 2.7.4