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 se...@apache.org on 2008/03/03 15:19:00 UTC

svn commit: r633091 - /webservices/axis2/trunk/c/util/src/properties.c

Author: senaka
Date: Mon Mar  3 06:18:59 2008
New Revision: 633091

URL: http://svn.apache.org/viewvc?rev=633091&view=rev
Log:
Fixing JIRA Issue AXIS2C-1037

Modified:
    webservices/axis2/trunk/c/util/src/properties.c

Modified: webservices/axis2/trunk/c/util/src/properties.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/properties.c?rev=633091&r1=633090&r2=633091&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/properties.c (original)
+++ webservices/axis2/trunk/c/util/src/properties.c Mon Mar  3 06:18:59 2008
@@ -119,7 +119,8 @@
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, key, AXIS2_FAILURE);
 
-    axutil_hash_set(properties->prop_hash, key, AXIS2_HASH_KEY_STRING, value);
+    axutil_hash_set(properties->prop_hash, axutil_strdup(env, key),
+                    AXIS2_HASH_KEY_STRING, axutil_strdup(env, value));
     return AXIS2_SUCCESS;
 }
 



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