xstrdup tftp cleanup from Jeff Garzik
This commit is contained in:
parent
21af752b04
commit
6b2c23d847
@ -387,13 +387,12 @@ int tftp_main(int argc, char **argv)
|
|||||||
|
|
||||||
serverfile = cp + 1;
|
serverfile = cp + 1;
|
||||||
|
|
||||||
if ((s = strdup(serverstr))) {
|
s = xstrdup(serverstr);
|
||||||
s[cp - serverstr] = '\0';
|
s[cp - serverstr] = '\0';
|
||||||
|
|
||||||
if ((host = gethostbyname(s))) {
|
if ((host = gethostbyname(s))) {
|
||||||
bad = 0;
|
bad = 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
free(s);
|
free(s);
|
||||||
}
|
}
|
||||||
|
3
tftp.c
3
tftp.c
@ -387,13 +387,12 @@ int tftp_main(int argc, char **argv)
|
|||||||
|
|
||||||
serverfile = cp + 1;
|
serverfile = cp + 1;
|
||||||
|
|
||||||
if ((s = strdup(serverstr))) {
|
s = xstrdup(serverstr);
|
||||||
s[cp - serverstr] = '\0';
|
s[cp - serverstr] = '\0';
|
||||||
|
|
||||||
if ((host = gethostbyname(s))) {
|
if ((host = gethostbyname(s))) {
|
||||||
bad = 0;
|
bad = 0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
free(s);
|
free(s);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user