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 di...@apache.org on 2008/02/01 07:41:28 UTC

svn commit: r617357 - /webservices/axis2/trunk/c/util/src/base64_binary.c

Author: dinesh
Date: Thu Jan 31 22:41:26 2008
New Revision: 617357

URL: http://svn.apache.org/viewvc?rev=617357&view=rev
Log:
fixed axis2c-948, axutil_base64_binary_set_plain_binary crashes, Thanks Dave for the patch

Modified:
    webservices/axis2/trunk/c/util/src/base64_binary.c

Modified: webservices/axis2/trunk/c/util/src/base64_binary.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/base64_binary.c?rev=617357&r1=617356&r2=617357&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/base64_binary.c (original)
+++ webservices/axis2/trunk/c/util/src/base64_binary.c Thu Jan 31 22:41:26 2008
@@ -1,4 +1,3 @@
-
 /*
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
@@ -149,7 +148,7 @@
         return AXIS2_FAILURE;
     }
     memcpy(base64_binary->plain_binary, plain_binary,
-           base64_binary->plain_binary_len);
+           plain_binary_len);
     base64_binary->plain_binary_len = plain_binary_len;
 
     return AXIS2_SUCCESS;



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