mirror of
https://github.com/moparisthebest/curl
synced 2024-11-11 12:05:06 -05:00
hm, don't free the home dir and append the .netrc part properly
This commit is contained in:
parent
92186dc3d3
commit
a564a54e21
@ -83,7 +83,7 @@ int Curl_parsenetrc(char *host,
|
||||
struct passwd *pw;
|
||||
pw= getpwuid(geteuid());
|
||||
if (pw)
|
||||
strncat(netrcbuffer, pw->pw_dir, 255);
|
||||
home = pw->pw_dir;
|
||||
#else
|
||||
void *pw=NULL;
|
||||
#endif
|
||||
@ -93,14 +93,15 @@ int Curl_parsenetrc(char *host,
|
||||
if(!home) {
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
||||
if(strlen(home)>(sizeof(netrcbuffer)-strlen(NETRC))) {
|
||||
if(NULL==pw)
|
||||
free(home);
|
||||
return -1;
|
||||
}
|
||||
|
||||
sprintf(netrcbuffer, "%s%s%s", home, DIR_CHAR, NETRC);
|
||||
}
|
||||
|
||||
file = fopen(netrcbuffer, "r");
|
||||
if(file) {
|
||||
@ -164,6 +165,7 @@ int Curl_parsenetrc(char *host,
|
||||
fclose(file);
|
||||
}
|
||||
|
||||
if(NULL==pw)
|
||||
free(home);
|
||||
|
||||
return retcode;
|
||||
|
Loading…
Reference in New Issue
Block a user