aboutsummaryrefslogtreecommitdiffstats
path: root/x11-wm/skippy-xd/files/patch-src_config.c
blob: c5af18ff6f0218ad26963497d146755a65b83ce4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
--- src/config.c.orig   2015-02-24 13:35:00 UTC
+++ src/config.c
@@ -73,9 +73,9 @@ config_parse(const char *config) {
    int ix = 0, l_ix = 0;
    dlist *new_config = 0;
    
-   regcomp(&re_section, "^[[:space:]]*\\[[[:space:]]*([[:alnum:]]*?)[[:space:]]*\\][[:space:]]*$", REG_EXTENDED);
+   regcomp(&re_section, "^[[:space:]]*\\[[[:space:]]*([[:alnum:]]*)[[:space:]]*\\][[:space:]]*$", REG_EXTENDED);
    regcomp(&re_empty, "^[[:space:]]*#|^[[:space:]]*$", REG_EXTENDED);
-   regcomp(&re_entry, "^[[:space:]]*([[:alnum:]]+)[[:space:]]*=[[:space:]]*(.*?)[[:space:]]*$", REG_EXTENDED);
+   regcomp(&re_entry, "^[[:space:]]*([[:alnum:]]+)[[:space:]]*=[[:space:]]*(.*)[[:space:]]*$", REG_EXTENDED);
    
    while(1)
    {
@@ -150,6 +150,7 @@ config_load(const char *path)
        fclose(fin);
        return 0;
    }
+   data[flen] = '\0';
    
    fclose(fin);