From: Jeff Lenk Date: Thu, 22 Nov 2012 04:04:55 +0000 (-0600) Subject: fix compiler warning X-Git-Tag: v1.3.6~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b2a4fb256105236df92ee18c64ae3361cd7ebf0;p=thirdparty%2Ffreeswitch.git fix compiler warning --- diff --git a/src/switch_core_file.c b/src/switch_core_file.c index baec6f5184..ae040b31be 100644 --- a/src/switch_core_file.c +++ b/src/switch_core_file.c @@ -42,7 +42,7 @@ SWITCH_DECLARE(switch_status_t) switch_core_perform_file_open(const char *file, uint8_t channels, uint32_t rate, unsigned int flags, switch_memory_pool_t *pool) { char *ext; - switch_status_t status; + switch_status_t status = SWITCH_STATUS_FALSE; char stream_name[128] = ""; char *rhs = NULL; const char *spool_path = NULL;