Return-Path: Delivered-To: apmail-stdcxx-issues-archive@locus.apache.org Received: (qmail 11926 invoked from network); 13 Feb 2008 23:25:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 13 Feb 2008 23:25:31 -0000 Received: (qmail 77517 invoked by uid 500); 13 Feb 2008 23:25:25 -0000 Delivered-To: apmail-stdcxx-issues-archive@stdcxx.apache.org Received: (qmail 77496 invoked by uid 500); 13 Feb 2008 23:25:25 -0000 Mailing-List: contact issues-help@stdcxx.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@stdcxx.apache.org Delivered-To: mailing list issues@stdcxx.apache.org Received: (qmail 77487 invoked by uid 99); 13 Feb 2008 23:25:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 13 Feb 2008 15:25:25 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Wed, 13 Feb 2008 23:24:48 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 07237714043 for ; Wed, 13 Feb 2008 15:25:08 -0800 (PST) Message-ID: <22385609.1202945108011.JavaMail.jira@brutus> Date: Wed, 13 Feb 2008 15:25:08 -0800 (PST) From: "Martin Sebor (JIRA)" To: issues@stdcxx.apache.org Subject: [jira] Created: (STDCXX-729) [HP aCC 6.15] warning #20200-D: potential null pointer dereference in _money_put.cc MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [HP aCC 6.15] warning #20200-D: potential null pointer dereference in _money_put.cc ----------------------------------------------------------------------------------- Key: STDCXX-729 URL: https://issues.apache.org/jira/browse/STDCXX-729 Project: C++ Standard Library Issue Type: Sub-task Components: Build Affects Versions: 4.2.0 Environment: $ uname -sr && aCC -V HP-UX B.11.31 aCC: HP C/aC++ B3910B A.06.16 [Nov 26 2007] Reporter: Martin Sebor Assignee: Martin Sebor Priority: Trivial Fix For: 4.2.1 The compiler (both aCC 6.15 and 6.16) complains about a null pointer dereference in {{money_put}}: {noformat} aCC -c -D_RWSTDDEBUG -mt -I$(TOPDIR)/include -I$(BUILDDIR)/include -AA -g +d +DD64 +w +W392 +W655 +W684 +W818 +W819 +W849 +W2193 +W2236 +W2261 +W2340 +W2401 +W2487 +W4227 +W4229 +W4231 +W4235 +W4237 +W4249 +W4255 +W4272 +W4284 +W4285 +W4286 $(TOPDIR)/src/ti_money_put.cpp "$(TOPDIR)/include/loc/_money_put.cc", line 130: remark #4296-D: arithmetic operation on boolean type - !__dint - !!__fd - (__dint > 0 ? __dint : -__dint) - __fd ^ detected during instantiation of "_OutputIter std::money_put<_CharT, _OutputIter>::_C_put(_OutputIter, int, std::ios_base &, _CharT, const _CharT *, unsigned long, int, const char *, unsigned long) const [with _CharT=char, _OutputIter=std::ostreambuf_iterator>]" at line 322 "$(TOPDIR)/include/loc/_money_put.cc", line 130: remark #4296-D: arithmetic operation on boolean type - !__dint - !!__fd - (__dint > 0 ? __dint : -__dint) - __fd ^ detected during instantiation of "_OutputIter std::money_put<_CharT, _OutputIter>::_C_put(_OutputIter, int, std::ios_base &, _CharT, const _CharT *, unsigned long, int, const char *, unsigned long) const [with _CharT=char, _OutputIter=std::ostreambuf_iterator>]" at line 322 "$(TOPDIR)/include/loc/_money_put.cc", line 131: remark #4296-D: arithmetic operation on boolean type - ( money_base::space == __fmat.field [1] ^ detected during instantiation of "_OutputIter std::money_put<_CharT, _OutputIter>::_C_put(_OutputIter, int, std::ios_base &, _CharT, const _CharT *, unsigned long, int, const char *, unsigned long) const [with _CharT=char, _OutputIter=std::ostreambuf_iterator>]" at line 322 "$(TOPDIR)/include/loc/_money_put.cc", line 94, procedure _C_put: warning #20200-D: Potential null pointer dereference through __pun0 is detected (null definition:$(TOPDIR)/include/loc/_money_put.cc, line 74) "$(TOPDIR)/include/loc/_money_put.cc", line 90, procedure _C_put: warning #20200-D: Potential null pointer dereference through __pun1 is detected (null definition:$(TOPDIR)/include/loc/_money_put.cc, line 79) {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.