Browse Source

Avoid match1.del_fwd getting stale value

master
Samuel Thibault 3 years ago
parent
commit
53348c5118
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/libespeak-ng/dictionary.c

+ 2
- 2
src/libespeak-ng/dictionary.c View File

char *p; char *p;
ALPHABET *alphabet; ALPHABET *alphabet;
int dict_flags0 = 0; int dict_flags0 = 0;
MatchRecord match1;
MatchRecord match2;
MatchRecord match1 = { 0 };
MatchRecord match2 = { 0 };
char ph_buf[N_PHONEME_BYTES]; char ph_buf[N_PHONEME_BYTES];
char word_copy[N_WORD_BYTES]; char word_copy[N_WORD_BYTES];
static const char str_pause[2] = { phonPAUSE_NOLINK, 0 }; static const char str_pause[2] = { phonPAUSE_NOLINK, 0 };

Loading…
Cancel
Save