From 7f98d5a68266a6d407a48b95b1612155cd2f48d3 Mon Sep 17 00:00:00 2001 From: simon Date: Sun, 9 Feb 2020 18:11:29 -0500 Subject: [PATCH] Fix buffer overflow (whoops) --- src/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.h b/src/types.h index 18863db..965c3ac 100644 --- a/src/types.h +++ b/src/types.h @@ -49,7 +49,7 @@ enum metakey { typedef struct index_descriptor { char uuid[UUID_STR_LEN]; - char version[6]; + char version[64]; long timestamp; char root[PATH_MAX]; char rewrite_url[8196];