aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-04 22:37:13 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-06-04 22:37:13 +0000
commitee53a05a10d89828553b6758c7af0c324090551f (patch)
tree9dafefcef03077c6342ddeef3a7bc998f86bc815
parentb165d7ae07e9d5150ce48d2f2746843daeedd508 (diff)
fixes compile error from uninitialized variable
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@268281 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 815cb0c79..31eaaaba9 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -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)) {