tool_findfile: free mem properly

Follow-up to 764e4f066d5

Closes #8242
This commit is contained in:
Daniel Stenberg 2022-01-07 16:06:58 +01:00
parent 764e4f066d
commit e180dde9c5
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -126,10 +126,12 @@ char *findfile(const char *fname, int dotscore)
home = c;
}
if(list[i].withoutdot) {
if(!dotscore || xdg)
if(!dotscore || xdg) {
/* this is not looking for .curlrc, or the XDG_CONFIG_HOME was
defined so we skip the extended check */
curl_free(home);
continue;
}
filename++; /* move past the leading dot */
dotscore = 0; /* disable it for this check */
}