Author: pini Date: Mon Jan 7 00:39:04 2008 New Revision: 609531 URL: http://svn.apache.org/viewvc?rev=609531&view=rev Log: Fixed a syntax error
Modified: webservices/axis2/trunk/c/samples/server/mtom/mtom.c Modified: webservices/axis2/trunk/c/samples/server/mtom/mtom.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/mtom/mtom.c?rev=609531&r1=609530&r2=609531&view=diff ============================================================================== --- webservices/axis2/trunk/c/samples/server/mtom/mtom.c (original) +++ webservices/axis2/trunk/c/samples/server/mtom/mtom.c Mon Jan 7 00:39:04 2008 @@ -1,4 +1,3 @@ -L /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with @@ -119,12 +118,12 @@ data_handler_res = axiom_data_handler_create(env, NULL, NULL); buff = AXIS2_MALLOC(env->allocator, sizeof(axis2_byte_t)*buff_len); - if (!buff) + /* if (!buff) { AXIS2_LOG_ERROR (env->log, AXIS2_LOG_SI, "malloc failed, not enough memory"); return AXIS2_FAILURE; - } + }*/ memcpy(buff, input_buff, buff_len); --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]