1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

hm, don't free the home dir and append the .netrc part properly

This commit is contained in:
Daniel Stenberg 2001-03-14 16:12:47 +00:00
parent 92186dc3d3
commit a564a54e21

View File

@ -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,15 +93,16 @@ int Curl_parsenetrc(char *host,
if(!home) {
return -1;
}
if(strlen(home)>(sizeof(netrcbuffer)-strlen(NETRC))) {
free(home);
return -1;
}
sprintf(netrcbuffer, "%s%s%s", home, DIR_CHAR, NETRC);
}
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) {
char *tok;
@ -164,7 +165,8 @@ int Curl_parsenetrc(char *host,
fclose(file);
}
free(home);
if(NULL==pw)
free(home);
return retcode;
}