From: John Melton G0ORX <john.d.melton@googlemail.com>
Date: Sat, 27 Feb 2021 13:28:34 +0000 (+0000)
Subject: Fix bug when property line > 80 bytes
X-Git-Url: https://git.rkrishnan.org/components/module-simplejson.scanner.html?a=commitdiff_plain;h=616d6fe3e3f0808f3c9a3064a2ea247d9f979eea;p=pihpsdr.git

Fix bug when property line > 80 bytes
---

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");