diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-03-30 10:01:11 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-03-30 10:01:11 +0100 |
commit | fc82f2525c0c400b508a322c74de134e299ceb7b (patch) | |
tree | da8e3ecfd75892606e6a4dfc7d92e71333948d8c | |
parent | ac16f2c641d3d16276f3a41b2aae26832ad5fd9c (diff) | |
parent | ded695504faad8f5d6430731f0bcb9beb0e1430a (diff) | |
download | rtmux-fc82f2525c0c400b508a322c74de134e299ceb7b.tar.gz rtmux-fc82f2525c0c400b508a322c74de134e299ceb7b.tar.bz2 rtmux-fc82f2525c0c400b508a322c74de134e299ceb7b.zip |
Merge branch 'obsd-master' into master
-rw-r--r-- | grid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1003,7 +1003,7 @@ grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx, gl = grid_peek_line(gd, py); for (xx = px; xx < px + nx; xx++) { - if (gl == NULL || xx >= gl->cellsize) + if (gl == NULL || xx >= gl->cellused) break; grid_get_cell(gd, xx, py, &gc); if (gc.flags & GRID_FLAG_PADDING) |