You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-user@axis.apache.org by Atanacio Reyes <ar...@yahoo.com> on 2007/11/16 03:07:54 UTC

Error in source code axis2c version 1.1.0

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: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org


Re: Error in source code axis2c version 1.1.0

Posted by Dinesh Premalal <xy...@gmail.com>.
Hi Atanacio,

Atanacio Reyes <ar...@yahoo.com> 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: axis-c-user-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-c-user-help@ws.apache.org