diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2013-08-26 18:55:41 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2013-08-26 18:55:41 +0300 |
commit | 36c4110ad5d828ba74c46bb7d3c3c41c42be95ba (patch) | |
tree | 9a88ed7f13250a8c16c82d5640d4c28a60d9ef49 /regcomp.c | |
parent | 84f6bcd255d10b593298e0408011e9f03d1ab18c (diff) | |
download | egawk-36c4110ad5d828ba74c46bb7d3c3c41c42be95ba.tar.gz egawk-36c4110ad5d828ba74c46bb7d3c3c41c42be95ba.tar.bz2 egawk-36c4110ad5d828ba74c46bb7d3c3c41c42be95ba.zip |
Remove unnecessary RE_TOKEN_INIT_BUG stuff.
Diffstat (limited to 'regcomp.c')
-rw-r--r-- | regcomp.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -2547,13 +2547,7 @@ parse_dup_op (bin_tree_t *elem, re_string_t *regexp, re_dfa_t *dfa, { bin_tree_t *tree = NULL, *old_tree = NULL; int i, start, end, start_idx = re_string_cur_idx (regexp); -#ifndef RE_TOKEN_INIT_BUG re_token_t start_token = *token; -#else - re_token_t start_token; - - memcpy ((void *) &start_token, (void *) token, sizeof start_token); -#endif if (token->type == OP_OPEN_DUP_NUM) { |