S. Gilles wrote: > @@ -480,7 +480,7 @@ readstdin(void) > } > if (items) > items[i].text = NULL; > - inputw = TEXTW(items[imax].text); > + inputw = items ? TEXTW(items[imax].text) : 0; > lines = MIN(lines, i); > }
Heyho, Nice catch! I didn't notice that regression in my last patch. --Markus
