Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 17753 invoked from network); 7 Jan 2008 08:39:34 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jan 2008 08:39:34 -0000 Received: (qmail 60116 invoked by uid 500); 7 Jan 2008 08:39:22 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 60044 invoked by uid 500); 7 Jan 2008 08:39:22 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 60033 invoked by uid 500); 7 Jan 2008 08:39:22 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 60030 invoked by uid 99); 7 Jan 2008 08:39:22 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2008 00:39:22 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 07 Jan 2008 08:39:18 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C9E531A985B; Mon, 7 Jan 2008 00:39:09 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r609531 - /webservices/axis2/trunk/c/samples/server/mtom/mtom.c Date: Mon, 07 Jan 2008 08:39:09 -0000 To: axis2-cvs@ws.apache.org From: pini@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080107083909.C9E531A985B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org