diff options
author | nandika | 2010-06-08 08:58:15 +0000 |
---|---|---|
committer | nandika | 2010-06-08 08:58:15 +0000 |
commit | 322a22d5499d52d76b0a8bed8b61f86fd0eab430 (patch) | |
tree | 0299d981677e4fc0abf91b96b07efe1588d2cf96 /src | |
parent | 40a047d5c779896bfdb04d8a20f213f153a50816 (diff) | |
download | axis2c-322a22d5499d52d76b0a8bed8b61f86fd0eab430.tar.gz axis2c-322a22d5499d52d76b0a8bed8b61f86fd0eab430.tar.bz2 |
op_client.c axis2_engine_receive status check added.
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@952576 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/core/clientapi/op_client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/clientapi/op_client.c b/src/core/clientapi/op_client.c index 3ccb776..539f687 100644 --- a/src/core/clientapi/op_client.c +++ b/src/core/clientapi/op_client.c @@ -1236,6 +1236,8 @@ axis2_op_client_two_way_send( } } status = axis2_engine_receive(engine, env, response); + if(status != AXIS2_SUCCESS ) + return NULL; } } else @@ -1436,4 +1438,4 @@ axis2_op_client_set_reuse( axis2_bool_t reuse) { op_client->reuse = reuse; -} +}
\ No newline at end of file |