Error in source code axis2c version 1.1.0

2007-11-15 Thread Atanacio Reyes
In source code file 
axis2c.../src/core/transport/tcp/receiver/simple_tcp_svr_conn.c
at line 155
if (str_line)
svr_conn-buffer = str_line;

I think the source should be:
if (*str_line)
svr_conn-buffer = str_line;

because str_line pointer always is true.




  

Be a better pen pal. 
Text or chat with friends inside Yahoo! Mail. See how.  
http://overview.mail.yahoo.com/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Error in source code axis2c version 1.1.0

2007-11-15 Thread Dinesh Premalal
Hi Atanacio,

Atanacio Reyes [EMAIL PROTECTED] writes:

 In source code file 
 axis2c.../src/core/transport/tcp/receiver/simple_tcp_svr_conn.c
 at line 155
 if (str_line)
 svr_conn-buffer = str_line;

 I think the source should be:
 if (*str_line)
 svr_conn-buffer = str_line;

 because str_line pointer always is true.

Yeah, It should be fixed.


thanks,
Dinesh

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]