diff options
-rw-r--r-- | pico/tts/com_svox_picottsengine.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pico/tts/com_svox_picottsengine.cpp b/pico/tts/com_svox_picottsengine.cpp index bafd300..2370964 100644 --- a/pico/tts/com_svox_picottsengine.cpp +++ b/pico/tts/com_svox_picottsengine.cpp @@ -1073,7 +1073,7 @@ tts_result TtsEngine::init( synthDoneCB_t synthDoneCBPtr, const char *config ) strcpy((char*)pico_alt_lingware_path, config); LOGV("Alternative lingware path %s", pico_alt_lingware_path); } else { - pico_alt_lingware_path = (char*)malloc(strlen(PICO_LINGWARE_PATH)); + pico_alt_lingware_path = (char*)malloc(strlen(PICO_LINGWARE_PATH) + 1); strcpy((char*)pico_alt_lingware_path, PICO_LINGWARE_PATH); LOGV("Using predefined lingware path %s", pico_alt_lingware_path); } @@ -1659,4 +1659,3 @@ TtsEngine * getTtsEngine( void ) #ifdef __cplusplus } #endif - |