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
Fix another out-of-bounds read in SSML parsing.
A malformed tag like <foo could cause espeak to read past the end of the string.
master
Christopher Brannon
4 years ago
parent
2a7080f411
commit
8810fa330e
No account linked to committer's email address
3 changed files
with
5 additions
and
1 deletions
Unified View
Show Diff Stats
3
1
src/libespeak-ng/readclause.c
1
0
tests/ssml/malformed-tag1.expected
1
0
tests/ssml/malformed-tag1.ssml
+ 3
- 1
src/libespeak-ng/readclause.c
View File
return terminator;
return terminator;
}
}
c1 = ' ';
c1 = ' ';
c2 = GetC();
if (!Eof()) {
c2 = GetC();
}
continue;
continue;
}
}
}
}
+ 1
- 0
tests/ssml/malformed-tag1.expected
View File
+ 1
- 0
tests/ssml/malformed-tag1.ssml
View File
<<foo
Write
Preview
Loading…
Cancel
Save