From 5bef06adfdac4ce9940dcaf2d90a4bdffae7bba9 Mon Sep 17 00:00:00 2001 From: Ian Fan Date: Wed, 2 Jan 2019 18:47:22 +0000 Subject: fixup! stringop.c: rewrite strip_whitespace --- common/stringop.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common') diff --git a/common/stringop.c b/common/stringop.c index f8b7aaec..8af0d60f 100644 --- 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) { -- cgit v1.2.3-54-g00ecf