Fix build warning (which is transmogrified into an error) with my compiler due to uninitialized variable.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@391982 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Joshua Colp 2013-06-17 12:28:34 +00:00
parent 2b992bc74d
commit 2e541ec265
1 changed files with 1 additions and 1 deletions

View File

@ -942,7 +942,7 @@ static long cdr_object_get_billsec(struct cdr_object *cdr)
*/
static struct ast_cdr *cdr_object_create_public_records(struct cdr_object *cdr)
{
struct ast_cdr *pub_cdr = NULL, *cdr_prev;
struct ast_cdr *pub_cdr = NULL, *cdr_prev = NULL;
struct ast_var_t *it_var, *it_copy_var;
struct ast_channel_snapshot *party_a;
struct ast_channel_snapshot *party_b;