[PATCH] dwrite: Set ret on unimplemented lookup in opentype_layout_apply_gsub_lookup.
Signed-off-by: Gijs Vermeulen <gijsvrm(a)gmail.com> --- This fixes a Clang warning. dlls/dwrite/opentype.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dwrite/opentype.c b/dlls/dwrite/opentype.c index 0feb2feadc..4fe3c32ff5 100644 --- a/dlls/dwrite/opentype.c +++ b/dlls/dwrite/opentype.c @@ -4478,6 +4478,7 @@ static void opentype_layout_apply_gsub_lookup(struct scriptshaping_context *cont case GSUB_LOOKUP_LIGATURE_SUBST: case GSUB_LOOKUP_CONTEXTUAL_SUBST: case GSUB_LOOKUP_REVERSE_CHAINING_CONTEXTUAL_SUBST: + ret = TRUE; WARN("Unimplemented lookup %d.\n", lookup_type); break; default: -- 2.26.2
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=71500 Your paranoid android. === debiant (32 bit report) === dwrite: analyzer: Timeout layout: Timeout === debiant (32 bit Chinese:China report) === dwrite: analyzer: Timeout layout: Timeout === debiant (32 bit WoW report) === dwrite: analyzer: Timeout layout: Timeout === debiant (64 bit WoW report) === dwrite: analyzer: Timeout layout: Timeout
participants (2)
-
Gijs Vermeulen -
Marvin