You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2005/12/16 09:03:16 UTC

svn commit: r357142 - /webservices/axis2/trunk/c/modules/util/src/string.c

Author: samisa
Date: Fri Dec 16 00:03:11 2005
New Revision: 357142

URL: http://svn.apache.org/viewcvs?rev=357142&view=rev
Log:
Fixed the bug in the stracat function

Modified:
    webservices/axis2/trunk/c/modules/util/src/string.c

Modified: webservices/axis2/trunk/c/modules/util/src/string.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/src/string.c?rev=357142&r1=357141&r2=357142&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/src/string.c (original)
+++ webservices/axis2/trunk/c/modules/util/src/string.c Fri Dec 16 00:03:11 2005
@@ -58,7 +58,7 @@
     }
     if(NULL == s2)
     {
-        return (axis2_char_t)AXIS2_STRDUP(s1, env);
+        return (axis2_char_t *)AXIS2_STRDUP(s1, env);
     }
     alloc_len = axis2_strlen(s1) + axis2_strlen(s2) + 1;
     ret = (axis2_char_t*)AXIS2_MALLOC((*env)->allocator,