diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-18 06:00:17 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2016-11-18 06:00:17 +0200 |
commit | e8b0cf14d975304166c58a2d04a2943ab821367a (patch) | |
tree | 6984492869ca192ee6a7fdf330e6867a5f61ae09 /awk.h | |
parent | cc04afb329cea035d0d9b67cd3b677e06b2f3996 (diff) | |
download | egawk-e8b0cf14d975304166c58a2d04a2943ab821367a.tar.gz egawk-e8b0cf14d975304166c58a2d04a2943ab821367a.tar.bz2 egawk-e8b0cf14d975304166c58a2d04a2943ab821367a.zip |
Audit use of stptr for NUL termination. Update doc before merge to master.
Diffstat (limited to 'awk.h')
-rw-r--r-- | awk.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1562,7 +1562,7 @@ extern struct redirect *getredirect(const char *str, int len); extern bool inrec(IOBUF *iop, int *errcode); extern int nextfile(IOBUF **curfile, bool skipping); extern bool is_non_fatal_std(FILE *fp); -extern bool is_non_fatal_redirect(const char *str); +extern bool is_non_fatal_redirect(const char *str, size_t len); /* main.c */ extern int arg_assign(char *arg, bool initing); extern int is_std_var(const char *var); |