]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
Fix bug when property line > 80 bytes
authorJohn Melton G0ORX <john.d.melton@googlemail.com>
Sat, 27 Feb 2021 13:28:34 +0000 (13:28 +0000)
committerJohn Melton G0ORX <john.d.melton@googlemail.com>
Sat, 27 Feb 2021 13:28:34 +0000 (13:28 +0000)
property.c

index 923daba31f3e3691da018fd9f5f8e56905965bee..860bf91146163a388b42a08f529ad4a686561173 100644 (file)
@@ -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");