aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/stringop.c8
1 files changed, 4 insertions, 4 deletions
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) {
16 size_t start = strspn(str, whitespace); 16 size_t start = strspn(str, whitespace);
17 memmove(str, &str[start], len + 1 - start); 17 memmove(str, &str[start], len + 1 - start);
18 18
19 if (!*str) return; 19 if (*str) {
20 20 for (len -= start + 1; isspace(str[len]); --len) {}
21 for (len -= start + 1; isspace(str[len]); --len) {} 21 str[len + 1] = '\0';
22 str[len + 1] = '\0'; 22 }
23} 23}
24 24
25void strip_quotes(char *str) { 25void strip_quotes(char *str) {