commit 1ac106d2827cab446cf673c12c021ae7d2cee9fe
parent 1fa05223649af656df34cdcfa8f857c4ccb8954f
Author: Quentin Rameau <quinq@fifth.space>
Date:   Fri, 25 Aug 2017 13:55:30 +0200
Fix search selector length calculation
We were missing a space for the terminating NULL char.
Thanks to trqx for spotting this!
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sacc.c b/sacc.c
@@ -605,7 +605,7 @@ searchselector(Item *item)
 		return NULL;
 
 	if (exp[0] && strcmp(exp, pexp)) {
-		n += 1 + strlen(exp);
+		n += strlen(exp) + 2;
 		tag = xmalloc(n);
 		snprintf(tag, n, "%s\t%s", selector, exp);
 	}