Wed May 13 13:21:12 CDT 2009 Pekka Pessi <first.last@nokia.com>

* sip-date.c: not using uninit data.
  Ignore-this: 48751cc510886e42e23e48c535a869bc
  
  Coverity issue.


git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13351 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-05-15 16:16:35 +00:00
parent 5f5732c0aa
commit 9aac7fc9c0
2 changed files with 2 additions and 4 deletions

View File

@ -1 +1 @@
Fri May 15 11:15:49 CDT 2009
Fri May 15 11:16:18 CDT 2009

View File

@ -99,7 +99,7 @@ void usage(void)
int main(int ac, char *av[])
{
int numeric = 0;
sip_time_t t, t2;
sip_time_t t = 0, t2 = 0;
char const *s;
char buf[1024];
@ -132,8 +132,6 @@ int main(int ac, char *av[])
}
else {
for (; *s; ) {
t2 = 0;
if (msg_delta_d(&s, &t2) < 0)
usage();