Merge branch 'obsd-master' into master

pull/3012/head
Thomas Adam 2021-12-20 10:01:13 +00:00
commit ba9b9367d5
1 changed files with 5 additions and 0 deletions

View File

@ -3148,6 +3148,11 @@ window_copy_cellstring(const struct grid_line *gl, u_int px, size_t *size,
}
utf8_to_data(gl->extddata[gce->offset].data, &ud);
if (ud.size == 0) {
*size = 0;
*allocated = 0;
return (NULL);
}
*size = ud.size;
*allocated = 1;