You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by ma...@apache.org on 2007/12/03 12:28:28 UTC

svn commit: r600488 - /webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c

Author: manjula
Date: Mon Dec  3 03:28:27 2007
New Revision: 600488

URL: http://svn.apache.org/viewvc?rev=600488&view=rev
Log:
fixed the windows build break.

Modified:
    webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c

Modified: webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c?rev=600488&r1=600487&r2=600488&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c (original)
+++ webservices/sandesha/trunk/c/src/storage/mysql/permanent_seq_property_mgr.c Mon Dec  3 03:28:27 2007
@@ -252,12 +252,16 @@
     axis2_char_t sql_insert[1024];
     axis2_bool_t ret = AXIS2_FALSE;
     sandesha2_permanent_seq_property_mgr_t *seq_prop_mgr_impl = NULL;
+    axis2_char_t *id = NULL;
+    axis2_char_t *seq_id = NULL;
+    axis2_char_t *name = NULL;
+    axis2_char_t *value = NULL;
 
     AXIS2_PARAM_CHECK(env->error, bean, AXIS2_FALSE);
-    axis2_char_t *id = sandesha2_permanent_seq_property_mgr_get_id_with_bean(env, bean);
-    axis2_char_t *seq_id = sandesha2_seq_property_bean_get_seq_id(bean, env);
-    axis2_char_t *name = sandesha2_seq_property_bean_get_name(bean, env);
-    axis2_char_t *value = sandesha2_seq_property_bean_get_value(bean, env);
+    id = sandesha2_permanent_seq_property_mgr_get_id_with_bean(env, bean);
+    seq_id = sandesha2_seq_property_bean_get_seq_id(bean, env);
+    name = sandesha2_seq_property_bean_get_name(bean, env);
+    value = sandesha2_seq_property_bean_get_value(bean, env);
 
     seq_prop_mgr_impl = SANDESHA2_INTF_TO_IMPL(seq_prop_mgr);
 
@@ -332,12 +336,18 @@
     axis2_char_t sql_update[1024];
     axis2_bool_t ret = AXIS2_FALSE;
     sandesha2_permanent_seq_property_mgr_t *seq_prop_mgr_impl = NULL;
+    axis2_char_t *id = NULL;
+    axis2_char_t *seq_id = NULL;
+    axis2_char_t *name = NULL;
+    axis2_char_t *value = NULL;
 
     AXIS2_PARAM_CHECK(env->error, bean, AXIS2_FALSE);
-    axis2_char_t *id = sandesha2_permanent_seq_property_mgr_get_id_with_bean(env, bean);
-    axis2_char_t *seq_id = sandesha2_seq_property_bean_get_seq_id(bean, env);
-    axis2_char_t *name = sandesha2_seq_property_bean_get_name(bean, env);
-    axis2_char_t *value = sandesha2_seq_property_bean_get_value(bean, env);
+    
+    id = sandesha2_permanent_seq_property_mgr_get_id_with_bean(env, bean);
+    seq_id = sandesha2_seq_property_bean_get_seq_id(bean, env);
+    name = sandesha2_seq_property_bean_get_name(bean, env);
+    value = sandesha2_seq_property_bean_get_value(bean, env);
+
 
     seq_prop_mgr_impl = SANDESHA2_INTF_TO_IMPL(seq_prop_mgr);
 



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