]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-5197 --resolve
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 18 Mar 2013 21:08:46 +0000 (16:08 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 18 Mar 2013 21:08:46 +0000 (16:08 -0500)
src/mod/applications/mod_httapi/mod_httapi.c

index 9026333004fda6588270ea745f9fefec3c07c55c..7c56f6051741bf8b08d646119397784d673b21b0 100644 (file)
@@ -2602,9 +2602,9 @@ static switch_status_t locate_url_file(http_file_context_t *context, const char
                if ((!context->url_params || !switch_event_get_header(context->url_params, "ext")) 
                        && headers && (ct = switch_event_get_header(headers, "content-type"))) {
                        if (switch_strcasecmp_any(ct, "audio/mpeg", "audio/x-mpeg", "audio/mp3", "audio/x-mp3", "audio/mpeg3", 
-                                                                          "audio/x-mpeg3", "audio/mpg", "audio/x-mpg", "audio/x-mpegaudio")) {
+                                                                         "audio/x-mpeg3", "audio/mpg", "audio/x-mpg", "audio/x-mpegaudio", NULL)) {
                                newext = "mp3";
-                       } else if (switch_strcasecmp_any(ct, "audio/wav", "audio/x-wave", "audio/wav")) {
+                       } else if (switch_strcasecmp_any(ct, "audio/wav", "audio/x-wave", "audio/wav", NULL)) {
                                newext = "wav";
                        }
                }