From 308ad9a357a79b80d984807df799ce90da6df86f Mon Sep 17 00:00:00 2001 From: Stefan Sayer Date: Tue, 19 Jul 2011 13:38:59 +0200 Subject: [PATCH] fix some more type correctness --- core/sip/sip_trans.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/sip/sip_trans.cpp b/core/sip/sip_trans.cpp index a229f5bb..375b5310 100644 --- a/core/sip/sip_trans.cpp +++ b/core/sip/sip_trans.cpp @@ -66,8 +66,8 @@ sip_trans::sip_trans() : msg(NULL), retr_buf(NULL), retr_socket(NULL), - retr_len(NULL), - last_rseq(NULL) + retr_len(0), + last_rseq(0) { memset(timers,0,SIP_TRANS_TIMERS*sizeof(void*)); }