From: Michael Stapelberg Date: Fri, 26 Nov 2010 21:38:05 +0000 (+0100) Subject: Bugfix: use bufcopy instead of buf (Thanks fernando) X-Git-Tag: tree-pr1~59 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c3981e12d3147e62c17abac89f5480fe64579d36;p=i3%2Fi3 Bugfix: use bufcopy instead of buf (Thanks fernando) --- diff --git a/src/cfgparse.y b/src/cfgparse.y index 260e3013..c2227f67 100644 --- a/src/cfgparse.y +++ b/src/cfgparse.y @@ -113,8 +113,8 @@ void parse_file(const char *f) { SLIST_FOREACH(current, &variables, variables) { int extra = (strlen(current->value) - strlen(current->key)); char *next; - for (next = buf; - (next = strcasestr(buf + (next - buf), current->key)) != NULL; + for (next = bufcopy; + (next = strcasestr(bufcopy + (next - bufcopy), current->key)) != NULL; next += strlen(current->key)) { *next = '_'; extra_bytes += extra;