Skip to content
Snippets Groups Projects
Commit 90e01fcb authored by Kevin P. Fleming's avatar Kevin P. Fleming
Browse files

ensure that *all* fields in the req structure are cleared out before reusing...

ensure that *all* fields in the req structure are cleared out before reusing it; has_to_tag was not cleared, which caused the second incoming call over a TCP socket to fail if pedantic checking was enabled


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@148695 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 7877ed93
Branches
Tags
No related merge requests found
/*
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2006, Digium, Inc.
......@@ -2402,11 +2402,17 @@ static void *_sip_tcp_helper_thread(struct sip_pvt *pvt, struct ast_tcptls_sessi
goto cleanup;
 
for (;;) {
struct ast_str *str_save;
str_save = req.data;
memset(&req, 0, sizeof(req));
req.data = str_save;
ast_str_reset(req.data);
str_save = reqcpy.data;
memset(&reqcpy, 0, sizeof(reqcpy));
reqcpy.data = str_save;
ast_str_reset(reqcpy.data);
req.len = 0;
req.ignore = 0;
req.debug = 0;
 
req.socket.fd = ser->fd;
if (ser->ssl) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment