projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
38fb8d0
)
Fix bug when property line > 80 bytes
author
John Melton G0ORX
<john.d.melton@googlemail.com>
Sat, 27 Feb 2021 13:28:34 +0000
(13:28 +0000)
committer
John Melton G0ORX
<john.d.melton@googlemail.com>
Sat, 27 Feb 2021 13:28:34 +0000
(13:28 +0000)
property.c
patch
|
blob
|
history
diff --git
a/property.c
b/property.c
index 923daba31f3e3691da018fd9f5f8e56905965bee..860bf91146163a388b42a08f529ad4a686561173 100644
(file)
--- 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");