readstdin: reduce memory-usage by duplicating the line from getline()
commitdfbbf7f6e1b22ccf9e5a45d77ee10995577fb4fc
authorHiltjo Posthuma <hiltjo@codemadness.org>
Wed, 8 Mar 2023 20:20:52 +0000 (8 21:20 +0100)
committerHiltjo Posthuma <hiltjo@codemadness.org>
Wed, 8 Mar 2023 20:28:51 +0000 (8 21:28 +0100)
treefc6aeadab9feb3ab590f81565e7005dd22bb52ef
parentba1a347dcaba055f824161007dfee60db3ea785b
readstdin: reduce memory-usage by duplicating the line from getline()

Improves upon commit 32db2b125190d366be472ccb7cad833248696144

The getline() implementation often uses a more greedy way of allocating memory.
Using this buffer directly and forcing an allocation (by setting it to NULL)
would waste a bit of extra space, depending on the implementation of course.

Tested on musl libc and glibc.
The current glibc version allocates a minimum of 120 bytes per line.
For smaller lines musl libc seems less wasteful but still wastes a few bytes
per line.

On a dmenu_path listing on my system the memory usage was about 350kb (old) vs
30kb (new) on Void Linux glibc.

Side-note that getline() also reads NUL bytes in lines, while strdup() would
read until the NUL byte. Since dmenu reads text lines either is probably
fine(tm). Also rename junk to linesiz.
dmenu.c