From 616d6fe3e3f0808f3c9a3064a2ea247d9f979eea Mon Sep 17 00:00:00 2001 From: John Melton G0ORX Date: Sat, 27 Feb 2021 13:28:34 +0000 Subject: [PATCH] Fix bug when property line > 80 bytes --- property.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/property.c b/property.c index 923daba..860bf91 100644 --- a/property.c +++ b/property.c @@ -48,7 +48,7 @@ g_print("clearProperties\n"); * @param filename */ void loadProperties(char* filename) { - char string[80]; + char string[256]; char* name; char* value; FILE* f=fopen(filename,"r"); -- 2.45.2