* posix/regexec.c (find_recover_state): Remove unnecessary

initialization.
This commit is contained in:
Ulrich Drepper 2005-09-07 07:16:24 +00:00
parent e946ea2f14
commit 1878e9af92
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-09-07 Ulrich Drepper <drepper@redhat.com>
* posix/regexec.c (find_recover_state): Remove unnecessary
initialization.
2005-09-06 Ulrich Drepper <drepper@redhat.com>
* timezone/africa: Update from tzdata2005m.

View File

@ -2405,7 +2405,7 @@ find_recover_state (err, mctx)
reg_errcode_t *err;
re_match_context_t *mctx;
{
re_dfastate_t *cur_state = NULL;
re_dfastate_t *cur_state;
do
{
int max = mctx->state_log_top;