79634: [PATCH 1/5] gdi32: Keep track of the english family name if there's a localised name as well.

buildbot at kegel.com buildbot at kegel.com
Thu Oct 6 19:51:07 CDT 2011


This is an experimental automated build and test service.
Please feel free to ignore this email while we work the kinks out.

For more info about this message, see http://wiki.winehq.org/BuildBot

The Buildbot has detected a failed build on builder runtests-default while building Wine.
Full details are available at: http://buildbot.kegel.com/builders/runtests-default/builds/33 (though maybe not for long, as I'm still reinstalling the buildbot periodically while experimenting)
BUILD FAILED: failed git

Errors:
error: patch failed: dlls/gdi32/freetype.c:282
error: dlls/gdi32/freetype.c: patch does not apply

-------------- next part --------------
From: Huw Davies <huw at codeweavers.com>
Subject: [PATCH 1/5] gdi32: Keep track of the english family name if there's a localised name as well.
Message-Id: <1317936368-4103-1-git-send-email-huw at codeweavers.com>
Date: Thu,  6 Oct 2011 16:26:04 -0500

---
 dlls/gdi32/freetype.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index 81c704b..ae8ca41 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -282,6 +282,7 @@ typedef struct tagFace {
 typedef struct tagFamily {
     struct list entry;
     const WCHAR *FamilyName;
+    const WCHAR *EnglishName;
     struct list faces;
 } Family;
 
@@ -1378,6 +1379,7 @@ static INT AddFontToList(const char *file, void *font_data_ptr, DWORD font_data_
             if(!family) {
                 family = HeapAlloc(GetProcessHeap(), 0, sizeof(*family));
                 family->FamilyName = strdupW(localised_family ? localised_family : english_family);
+                family->EnglishName = localised_family ? strdupW(english_family) : NULL;
                 list_init(&family->faces);
                 list_add_tail(&font_list, &family->entry);
 



More information about the wine-tests-results mailing list