Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52747 Signed-off-by: Alex Henrie alexhenrie24@gmail.com
From: Alex Henrie alexhenrie24@gmail.com
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52747 Signed-off-by: Alex Henrie alexhenrie24@gmail.com --- dlls/winex11.drv/xrender.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/dlls/winex11.drv/xrender.c b/dlls/winex11.drv/xrender.c index 585299cba9e..826a07fdf1d 100644 --- a/dlls/winex11.drv/xrender.c +++ b/dlls/winex11.drv/xrender.c @@ -1212,6 +1212,8 @@ static Picture get_tile_pict( enum wxr_format wxr_format, const XRenderColor *co XRenderColor current_color; } tiles[WXR_NB_FORMATS], *tile;
+ if (wxr_format == WXR_INVALID_FORMAT) return 0; + tile = &tiles[wxr_format];
if(!tile->xpm)
We shouldn't even get there with an invalid format, it should have been caught earlier.
I am going to close this merge request because the bug seems to have disappeared as a result of other changes to winex11. If it pops up again, I will take your advice and write a patch that does the invalid format check sooner.
This merge request was closed by Alex Henrie.