Browse Source

Merge pull request #1123

master
Valdis Vitolins 3 years ago
parent
commit
370b47846b
No account linked to committer's email address

+ 1
- 1
src/libespeak-ng/compiledict.c View File

@@ -921,7 +921,7 @@ static void copy_rule_string(char *string, int *state_out)
mr = mnem_rules;
while (mr->mnem != NULL) {
len = strlen(mr->mnem);
if (memcmp(p, mr->mnem, len) == 0) {
if (strncmp(p, mr->mnem, len) == 0) {
value = mr->value;
p += len;
break;

+ 1
- 1
src/libespeak-ng/compilembrola.c View File

@@ -95,7 +95,7 @@ espeak_ng_STATUS espeak_ng_CompileMbrolaVoice(const char *filepath, FILE *log, e
if ((p = strstr(buf, "//")) != NULL)
*p = 0; // truncate line at comment

if (memcmp(buf, "volume", 6) == 0) {
if (strncmp(buf, "volume", 6) == 0) {
mbrola_ctrl = atoi(&buf[6]);
continue;
}

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

@@ -2672,7 +2672,7 @@ static const char *LookupDict2(Translator *tr, const char *word, const char *wor
}
}

if (memcmp(word2, p, n_chars) != 0)
if (strncmp(word2, p, n_chars) != 0)
condition_failed = 1;

if (condition_failed) {

Loading…
Cancel
Save