commit 5bef06adfdac4ce9940dcaf2d90a4bdffae7bba9 parent bd35879e1cfda51accc68c9890980dce59eb006a Author: Ian Fan <ianfan0@gmail.com> Date: Wed, 2 Jan 2019 18:47:22 +0000 fixup! stringop.c: rewrite strip_whitespace Diffstat:
| M | common/stringop.c | | | 8 | ++++---- |
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/common/stringop.c b/common/stringop.c @@ -16,10 +16,10 @@ void strip_whitespace(char *str) { size_t start = strspn(str, whitespace); memmove(str, &str[start], len + 1 - start); - if (!*str) return; - - for (len -= start + 1; isspace(str[len]); --len) {} - str[len + 1] = '\0'; + if (*str) { + for (len -= start + 1; isspace(str[len]); --len) {} + str[len + 1] = '\0'; + } } void strip_quotes(char *str) {