Browse Source

ssml: Use a larger buffer

When building espeak-ng in a directory that has a long path, 80 bytes to
store it is quite short.
master
Samuel Thibault 3 years ago
parent
commit
e8253c6513
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/libespeak-ng/ssml.c

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

@@ -571,7 +571,7 @@ int ProcessSsmlTag(wchar_t *xml_buf, char *outbuf, int *outix, int n_outbuf, con
char *uri;
int param_type;
char tag_name[40];
char buf[80];
char buf[160];
PARAM_STACK *sp;
SSML_STACK *ssml_sp;


Loading…
Cancel
Save