Author: samisa
Date: Tue Aug 14 02:43:08 2007
New Revision: 565678
URL: http://svn.apache.org/viewvc?view=rev&rev=565678
Log:
Fixed the break due to null variable value
Modified:
webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
Modified:
webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
URL:
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c?view=diff&rev=565678&r1=565677&r2=565678
==============================================================================
---
webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
(original)
+++
webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
Tue Aug 14 02:43:08 2007
@@ -316,9 +316,12 @@
SANDESHA2_SEQ_PROP_ACKS_TO_EPR);
sandesha2_seq_property_bean_set_seq_id(acks_to_bean, env,
offered_seq_id);
- sandesha2_seq_property_bean_set_value(acks_to_bean, env,
+ if (acks_to_epr)
+ {
+ sandesha2_seq_property_bean_set_value(acks_to_bean, env,
(axis2_char_t*)axis2_endpoint_ref_get_address(
acks_to_epr, env));
+ }
sandesha2_seq_property_mgr_insert(seq_prop_mgr, env, acks_to_bean);
next_bean = sandesha2_next_msg_bean_create(env);
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]