You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2006/06/06 06:08:02 UTC

svn commit: r411986 - /webservices/axis2/trunk/c/util/test/util/test_util.c

Author: pini
Date: Mon Jun  5 21:08:02 2006
New Revision: 411986

URL: http://svn.apache.org/viewvc?rev=411986&view=rev
Log:
fixing build break of util tests.

Modified:
    webservices/axis2/trunk/c/util/test/util/test_util.c

Modified: webservices/axis2/trunk/c/util/test/util/test_util.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/util/test_util.c?rev=411986&r1=411985&r2=411986&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/test/util/test_util.c (original)
+++ webservices/axis2/trunk/c/util/test/util/test_util.c Mon Jun  5 21:08:02 2006
@@ -155,11 +155,11 @@
 
 char* test_funct_for_test_env_null(const axis2_env_t *env)
 {
-   if(NULL == *env)
+   if(NULL == env)
    {
       axis2_allocator_t *allocator = axis2_allocator_init (NULL);
       axis2_error_t *error = axis2_error_create (allocator);
-        *env = axis2_env_create_with_error(allocator, error);
+        env = axis2_env_create_with_error(allocator, error);
       AXIS2_ERROR_SET_STATUS_CODE(env->error, AXIS2_FAILURE);
       AXIS2_ERROR_SET_ERROR_NUMBER(env->error, AXIS2_ERROR_ENVIRONMENT_IS_NULL);   
       return AXIS2_STRDUP("env is null!!!", env);



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org