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:
parent
5f5732c0aa
commit
9aac7fc9c0
|
@ -1 +1 @@
|
||||||
Fri May 15 11:15:49 CDT 2009
|
Fri May 15 11:16:18 CDT 2009
|
||||||
|
|
|
@ -99,7 +99,7 @@ void usage(void)
|
||||||
int main(int ac, char *av[])
|
int main(int ac, char *av[])
|
||||||
{
|
{
|
||||||
int numeric = 0;
|
int numeric = 0;
|
||||||
sip_time_t t, t2;
|
sip_time_t t = 0, t2 = 0;
|
||||||
char const *s;
|
char const *s;
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
|
|
||||||
|
@ -132,8 +132,6 @@ int main(int ac, char *av[])
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for (; *s; ) {
|
for (; *s; ) {
|
||||||
t2 = 0;
|
|
||||||
|
|
||||||
if (msg_delta_d(&s, &t2) < 0)
|
if (msg_delta_d(&s, &t2) < 0)
|
||||||
usage();
|
usage();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue