Esme Povirk (@madewokherd) commented about dlls/gdiplus/graphics.c:
if (scaled_rect.Width >= 0.5) { scaled_rect.Width -= margin_x * 2.0 * args.rel_width;
if (scaled_rect.Width < 0.5) return Ok; /* doesn't fit */
if (scaled_rect.Width < 0.5)
{
status = Ok; /* doesn't fit */
This is a dead assignment (`status` is never checked at the end).