diff options
author | Rob Landley | 2006-05-21 18:30:35 +0000 |
---|---|---|
committer | Rob Landley | 2006-05-21 18:30:35 +0000 |
commit | 9ffd42317b5a53c2236268808e34c90601f286c1 (patch) | |
tree | b126ca6ff7d2db91fa3525c6e5d3978932137fa3 /networking/udhcp/script.c | |
parent | c020f5f518714af603488c7d9e6cc72543fabc49 (diff) | |
download | busybox-9ffd42317b5a53c2236268808e34c90601f286c1.zip busybox-9ffd42317b5a53c2236268808e34c90601f286c1.tar.gz |
Minor cleanups: Convert a few calloc() calls to xzalloc, remove unnecessary
memset, collate variable declarations...
Diffstat (limited to 'networking/udhcp/script.c')
-rw-r--r-- | networking/udhcp/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/script.c b/networking/udhcp/script.c index b6b0e0d..2a47321 100644 --- a/networking/udhcp/script.c +++ b/networking/udhcp/script.c @@ -159,7 +159,7 @@ static char **fill_envp(struct dhcpMessage *packet) if (!(over & SNAME_FIELD) && packet->sname[0]) num_options++; } - envp = xcalloc(sizeof(char *), num_options + 5); + envp = xzalloc(sizeof(char *) * (num_options + 5)); j = 0; asprintf(&envp[j++], "interface=%s", client_config.interface); asprintf(&envp[j++], "%s=%s", "PATH", |