fixes compile error from uninitialized variable

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@268281 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
David Vossel 2010-06-04 22:37:13 +00:00
parent 19d1cd04ba
commit e32d9a1303
1 changed files with 1 additions and 1 deletions

View File

@ -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)) {