]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix bug in xml_curl that was being masked by versions < 679da2f0f609c7a893c62929481cb...
authorAnthony Minessale <anthm@freeswitch.org>
Wed, 4 Jan 2012 23:16:29 +0000 (17:16 -0600)
committerAnthony Minessale <anthm@freeswitch.org>
Wed, 4 Jan 2012 23:16:29 +0000 (17:16 -0600)
src/mod/asr_tts/mod_tts_commandline/mod_tts_commandline.c
src/mod/xml_int/mod_xml_curl/mod_xml_curl.c

index 0f3bc41f14cbf1ab1ea87e3602e5066293f3c3bd..80be1d9686876dde0d86b94462d18edb852def3b 100644 (file)
@@ -105,7 +105,7 @@ static switch_status_t tts_commandline_speech_open(switch_speech_handle_t *sh, c
        /* Construct temporary file name with a new UUID */
        switch_uuid_get(&uuid);
        switch_uuid_format(uuid_str, &uuid);
-       switch_snprintf(outfile, sizeof(outfile), "%s%s.tmp.wav", SWITCH_GLOBAL_dirs.temp_dir, uuid_str);
+       switch_snprintf(outfile, sizeof(outfile), "%s%s%s.tmp.wav", SWITCH_GLOBAL_dirs.temp_dir, SWITCH_PATH_SEPARATOR, uuid_str);
        info->file = switch_core_strdup(sh->memory_pool, outfile);
 
        info->fh = (switch_file_handle_t *) switch_core_alloc(sh->memory_pool, sizeof(switch_file_handle_t));
index e5fa3ff032dee71be79d686be92d59858d575004..1a01c7f4ffd87708a51e4fdfbd542601b2a0bbc8 100644 (file)
@@ -205,7 +205,7 @@ static switch_xml_t xml_url_fetch(const char *section, const char *tag_name, con
        switch_uuid_get(&uuid);
        switch_uuid_format(uuid_str, &uuid);
 
-       switch_snprintf(filename, sizeof(filename), "%s%s.tmp.xml", SWITCH_GLOBAL_dirs.temp_dir, uuid_str);
+       switch_snprintf(filename, sizeof(filename), "%s%s%s.tmp.xml", SWITCH_GLOBAL_dirs.temp_dir, SWITCH_PATH_SEPARATOR, uuid_str);
        curl_handle = switch_curl_easy_init();
        headers = switch_curl_slist_append(headers, "Content-Type: application/x-www-form-urlencoded");