From: Ralph Corderoy Date: Sun, 10 Sep 2017 14:03:09 +0000 (+0100) Subject: readline(3) wrapper: Move free(3) of line to where it's reachable. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/544d453bef5ccf734140f36efb1efd08ab8d71cb?hp=544d453bef5ccf734140f36efb1efd08ab8d71cb readline(3) wrapper: Move free(3) of line to where it's reachable. Every line returned by readline() has to be freed. The call to free() was unreachable because all paths heading towards it veered off, resulting in a memory leak. Move the free() to just after where the line has been used for the last time. Fixes 3a85e0bc9. ---