Module: kamailio Branch: master Commit: 27ba383b5aaabd84c25653a887738d06532fcf9f URL: https://github.com/kamailio/kamailio/commit/27ba383b5aaabd84c25653a887738d06...
Author: Daniel-Constantin Mierla miconda@gmail.com Committer: Daniel-Constantin Mierla miconda@gmail.com Date: 2016-11-01T15:19:56+01:00
sipcapture: initialize variable to get rid of compile warning
---
Modified: modules/sipcapture/sipcapture.c
---
Diff: https://github.com/kamailio/kamailio/commit/27ba383b5aaabd84c25653a887738d06... Patch: https://github.com/kamailio/kamailio/commit/27ba383b5aaabd84c25653a887738d06...
---
diff --git a/modules/sipcapture/sipcapture.c b/modules/sipcapture/sipcapture.c index 955e036..19ffbe6 100644 --- a/modules/sipcapture/sipcapture.c +++ b/modules/sipcapture/sipcapture.c @@ -2496,7 +2496,7 @@ static int report_capture(struct sip_msg *msg, str *_table, str* _corr, str *_d struct timezone tz; char tmp_node[100]; time_t epoch_time_as_time_t; - str corrtmp, tmp; + str corrtmp = STR_NULL, tmp;
_capture_mode_data_t *c = NULL;