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/03 17:37:17 UTC

svn commit: r618015 - /webservices/axis2/trunk/c/util/test/properties/property_test.c

Author: dinesh
Date: Sun Feb  3 08:37:11 2008
New Revision: 618015

URL: http://svn.apache.org/viewvc?rev=618015&view=rev
Log:
fixed axis2c-962 , property_test segfaults

Modified:
    webservices/axis2/trunk/c/util/test/properties/property_test.c

Modified: webservices/axis2/trunk/c/util/test/properties/property_test.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/test/properties/property_test.c?rev=618015&r1=618014&r2=618015&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/test/properties/property_test.c (original)
+++ webservices/axis2/trunk/c/util/test/properties/property_test.c Sun Feb  3 08:37:11 2008
@@ -20,6 +20,11 @@
 { 
     FILE *input = fopen("input.doc","rb");
     FILE *output = fopen("output.doc","rb");
+    if (!(input && output))
+    {
+        return AXIS2_FAILURE;
+    }
+
     env = create_environment();
     if(!env)
     {



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