[util] Fix ansi output when surface is empty
This commit is contained in:
parent
156852991e
commit
80f7728226
|
@ -63,7 +63,7 @@ helper_cairo_surface_write_to_ansi_stream (cairo_surface_t *surface,
|
|||
* Find the tight image top/bottom and only print in between. */
|
||||
|
||||
/* Use corner color as background color. */
|
||||
uint32_t bg_color = * (uint32_t *) data;
|
||||
uint32_t bg_color = data ? * (uint32_t *) data : 0;
|
||||
|
||||
/* Drop first row while empty */
|
||||
while (height)
|
||||
|
|
Loading…
Reference in New Issue