From: Michael Jerris Date: Mon, 8 Dec 2008 18:04:34 +0000 (+0000) Subject: assert bounds checking X-Git-Tag: v1.0.2~309 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=763507289d8915d5b8a67f06190dd918f84f6ab5;p=thirdparty%2Ffreeswitch.git assert bounds checking git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10661 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/xml_int/mod_xml_cdr/mod_xml_cdr.c b/src/mod/xml_int/mod_xml_cdr/mod_xml_cdr.c index 303deab59c..82ce4a2086 100644 --- a/src/mod/xml_int/mod_xml_cdr/mod_xml_cdr.c +++ b/src/mod/xml_int/mod_xml_cdr/mod_xml_cdr.c @@ -204,6 +204,7 @@ static switch_status_t my_on_hangup(switch_core_session_t *session) switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Got error [%ld] posting to web server [%s]\n", httpRes, globals.urls[globals.url_index]); globals.url_index++; + switch_assert(globals.url_count <= MAX_URLS); if (globals.url_index >= globals.url_count) { globals.url_index = 0; }