From axis-c-dev-return-12001-apmail-ws-axis-c-dev-archive=ws.apache.org@ws.apache.org Fri Nov 03 20:58:39 2006 Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 51861 invoked from network); 3 Nov 2006 20:58:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Nov 2006 20:58:38 -0000 Received: (qmail 48890 invoked by uid 500); 3 Nov 2006 20:58:49 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 48877 invoked by uid 500); 3 Nov 2006 20:58:49 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 48866 invoked by uid 99); 3 Nov 2006 20:58:48 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 12:58:48 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 03 Nov 2006 12:58:36 -0800 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7FE0A7142DB for ; Fri, 3 Nov 2006 12:58:16 -0800 (PST) Message-ID: <14224383.1162587496506.JavaMail.root@brutus> Date: Fri, 3 Nov 2006 12:58:16 -0800 (PST) From: "Chris Darroch (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Created: (AXIS2C-384) CLONE -calls to NULL pointers in woden/src/wsdl10/part.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org CLONE -calls to NULL pointers in woden/src/wsdl10/part.c -------------------------------------------------------- Key: AXIS2C-384 URL: http://issues.apache.org/jira/browse/AXIS2C-384 Project: Axis2-C Issue Type: Bug Components: woden Affects Versions: Current (Nightly), 0.94 Reporter: Chris Darroch Assigned To: Dinesh Premalal Priority: Minor Fix For: 0.95 In woden/src/wsdl10/msg_ref.c the following code is repeated often: if (!msg_ref) { msg_ref_impl = (woden_wsdl10_msg_ref_impl_t *) create(env); } else msg_ref_impl = (woden_wsdl10_msg_ref_impl_t *) msg_ref; woden_wsdl10_msg_ref_free_ops(msg_ref, env); This won't actually work if msg_ref is NULL, because although create() runs OK, the call to woden_wsdl10_msg_ref_free_ops() then fails with a segfault. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-c-dev-help@ws.apache.org