]> diplodocus.org Git - nmh/commitdiff
slocal.c: Alter trim() to return static array, not malloc(3).
authorRalph Corderoy <ralph@inputplus.co.uk>
Sun, 10 Sep 2017 17:12:38 +0000 (18:12 +0100)
committerRalph Corderoy <ralph@inputplus.co.uk>
Mon, 11 Sep 2017 17:12:07 +0000 (18:12 +0100)
The callers are immediately passing the return value to printf(3) for
"%s".  There's only one call per printf().  None of the callers are
bothering to free(3) the existing return value.  Return the address of
trim()'s char array, now static, instead.  Leave trim() returning NULL
when passed NULL, even though that gives NULL to print(3) for "%s".  It,
and slocal's other bugs, remain.


No differences found