Skip to content

Commit

Permalink
Merge pull request #1664 from mslehto/Wsometimes_uninitialized
Browse files Browse the repository at this point in the history
sipcapture: initialize variable
  • Loading branch information
miconda committed Oct 3, 2018
2 parents 6c15fc8 + a0db2cb commit 522c338
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/modules/sipcapture/sipcapture.c
Expand Up @@ -2499,7 +2499,8 @@ int receive_logging_json_msg(char *buf, unsigned int len,
struct timezone tz;
time_t epoch_time_as_time_t;

str tmp, corrtmp, table;
str tmp, table;
str corrtmp = STR_NULL;
_capture_mode_data_t *c = NULL;

c = capture_def;
Expand Down

0 comments on commit 522c338

Please sign in to comment.