From b912c5bfa51a6f8f5639536f7214fb732eabd5e6 Mon Sep 17 00:00:00 2001 From: Igor Date: Thu, 31 May 2018 18:47:08 -0400 Subject: [PATCH] Reserve space for null terminator --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index aa4db81..dface4f 100644 --- a/src/util.h +++ b/src/util.h @@ -116,7 +116,7 @@ typedef struct _aq_config char *rootdir; const char *myname; alpm_handle_t *handle; - char delimiter[SEP_LEN]; + char delimiter[SEP_LEN+1]; unsigned short aur; bool aur_foreign; bool aur_maintainer;