Skip to content

Commit

Permalink
tm: fix uninitialized variable to make travis happy
Browse files Browse the repository at this point in the history
  • Loading branch information
razvancrainea committed Apr 27, 2017
1 parent fdfb689 commit b9fba7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tm/async.c
Expand Up @@ -213,7 +213,7 @@ int t_handle_async(struct sip_msg *msg, struct action* a , int resume_route)
async_tm_ctx *ctx = NULL;
struct cell *t;
int r;
int fd;
int fd = 0;

/* create transaction and save everything into transaction */
t=get_t();
Expand Down

0 comments on commit b9fba7c

Please sign in to comment.