This website works better with JavaScript.
Home
Explore
Sign In
mahta.fetrat
/
HomoFast-eSpeak-Persian
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
address buffer overrun when dict listx file has no trailling newline
See ar_listx as an example.
master
Reef Turner
8 years ago
parent
fb97d1bd75
commit
0994206f71
1 changed files
with
2 additions
and
2 deletions
Unified View
Show Diff Stats
2
2
src/libespeak-ng/compiledict.c
+ 2
- 2
src/libespeak-ng/compiledict.c
View File
step = LINE_PARSER_WORD;
step = LINE_PARSER_WORD;
c =
0
;
while (c != '\n') {
c =
*p
;
while (c != '\n'
&& c != '\0'
) {
c = *p;
c = *p;
if ((c == '?') && (step == 0)) {
if ((c == '?') && (step == 0)) {
Write
Preview
Loading…
Cancel
Save