You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by pi...@apache.org on 2008/01/07 06:27:45 UTC

svn commit: r609517 - /webservices/axis2/trunk/c/samples/server/mtom/mtom.c

Author: pini
Date: Sun Jan  6 21:27:25 2008
New Revision: 609517

URL: http://svn.apache.org/viewvc?rev=609517&view=rev
Log:
Fixing jira issue 883

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=609517&r1=609516&r2=609517&view=diff
==============================================================================
--- webservices/axis2/trunk/c/samples/server/mtom/mtom.c (original)
+++ webservices/axis2/trunk/c/samples/server/mtom/mtom.c Sun Jan  6 21:27:25 2008
@@ -1,4 +1,4 @@
-
+L
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -119,6 +119,13 @@
                         data_handler_res = axiom_data_handler_create(env, NULL, NULL);
                         
                         buff = AXIS2_MALLOC(env->allocator, sizeof(axis2_byte_t)*buff_len);
+			if (!buff)
+			  {
+			    AXIS2_LOG_ERROR (env->log, AXIS2_LOG_SI,
+					     "malloc failed, not enough memory");
+			    return AXIS2_FAILURE;
+			  }
+
                         memcpy(buff, input_buff, buff_len);
 
                         axiom_data_handler_set_binary_data(data_handler_res, env, buff, buff_len);



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