aboutsummaryrefslogtreecommitdiffstats
path: root/extension/filefuncs.c
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2017-06-22 08:26:27 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2017-06-22 08:26:27 -0400
commit288b15d0793936fa14b51ed860056f6ce6200c52 (patch)
tree5de9e9dca8b30e8d168da8661ae88e3ffe2504a3 /extension/filefuncs.c
parentb7d8b6ebcd5dd714bc21acf7637d9a651e2f7ea7 (diff)
downloadegawk-288b15d0793936fa14b51ed860056f6ce6200c52.tar.gz
egawk-288b15d0793936fa14b51ed860056f6ce6200c52.tar.bz2
egawk-288b15d0793936fa14b51ed860056f6ce6200c52.zip
Replace malloc+memset with calloc, mostly by using the new ezalloc macro.
Diffstat (limited to 'extension/filefuncs.c')
-rw-r--r--extension/filefuncs.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/extension/filefuncs.c b/extension/filefuncs.c
index 394de504..9ca22de8 100644
--- a/extension/filefuncs.c
+++ b/extension/filefuncs.c
@@ -877,8 +877,7 @@ do_fts(int nargs, awk_value_t *result, struct awk_ext_func *unused)
/* make pathvector */
count = path_array->count + 1;
- emalloc(pathvector, char **, count * sizeof(char *), "do_fts");
- memset(pathvector, 0, count * sizeof(char *));
+ ezalloc(pathvector, char **, count * sizeof(char *), "do_fts");
/* fill it in */
count--; /* ignore final NULL at end of vector */