Skip to content
Snippets Groups Projects
Commit e32d9a13 authored by David Vossel's avatar David Vossel
Browse files

fixes compile error from uninitialized variable

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@268281 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 19d1cd04
Branches
Tags
No related merge requests found
......@@ -18764,7 +18764,7 @@ static void handle_response(struct sip_pvt *p, int resp, const char *rest, struc
}
 
if (p->socket.type == SIP_TRANSPORT_UDP) {
int ack_res;
int ack_res = FALSE;
 
/* Acknowledge whatever it is destined for */
if ((resp >= 100) && (resp <= 199)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment