You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by sh...@apache.org on 2010/03/04 04:35:22 UTC

svn commit: r918839 - /axis/axis2/c/core/trunk/util/test/util/test_util.c

Author: shankar
Date: Thu Mar  4 03:35:22 2010
New Revision: 918839

URL: http://svn.apache.org/viewvc?rev=918839&view=rev
Log:
fixing buffer overflow problem

Modified:
    axis/axis2/c/core/trunk/util/test/util/test_util.c

Modified: axis/axis2/c/core/trunk/util/test/util/test_util.c
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/util/test/util/test_util.c?rev=918839&r1=918838&r2=918839&view=diff
==============================================================================
--- axis/axis2/c/core/trunk/util/test/util/test_util.c (original)
+++ axis/axis2/c/core/trunk/util/test/util/test_util.c Thu Mar  4 03:35:22 2010
@@ -243,7 +243,7 @@
 test_log_write(
     )
 {
-    char msg[10];
+    char msg[20];
     printf("start of test_log_write\n\n");
     axutil_allocator_t *allocator = axutil_allocator_init(NULL);
     if (!allocator)