diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-09-08 12:47:05 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-09-08 12:47:05 +0200 |
commit | 4661f6cb95c365c434b753cdf6d4c1251f321230 (patch) | |
tree | cf1225ec147958393063ad3bb6b3995abecf98a9 /getopt.c | |
parent | 187f81febdf5a52d1c646bd83a10c9f03d13947b (diff) | |
parent | c3e4d0cf3f1fd24164e0a58db23b86b56c6dc7c8 (diff) | |
download | egawk-4661f6cb95c365c434b753cdf6d4c1251f321230.tar.gz egawk-4661f6cb95c365c434b753cdf6d4c1251f321230.tar.bz2 egawk-4661f6cb95c365c434b753cdf6d4c1251f321230.zip |
Merge branch 'gawk-4.1-stable'
Diffstat (limited to 'getopt.c')
-rw-r--r-- | getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -575,7 +575,7 @@ _getopt_internal_r (int argc, char *const *argv, const char *optstring, || pfound->val != p->val) { /* Second or later nonexact match found. */ - struct option_list *newp = alloca (sizeof (*newp)); + struct option_list *newp = malloc (sizeof (*newp)); newp->p = p; newp->needs_free = 1; newp->next = ambig_list; |