From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8639 invoked by alias); 3 Oct 2011 20:30:56 -0000 Received: (qmail 8620 invoked by uid 22791); 3 Oct 2011 20:30:56 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from localhost (HELO gcc.gnu.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 03 Oct 2011 20:30:42 +0000 From: "dcb314 at hotmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug c/50606] New: gcc fails to detect obvious use of NULL pointer Date: Mon, 03 Oct 2011 20:30:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: c X-Bugzilla-Keywords: X-Bugzilla-Severity: enhancement X-Bugzilla-Who: dcb314 at hotmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2011-10/txt/msg00133.txt.bz2 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=50606 Bug #: 50606 Summary: gcc fails to detect obvious use of NULL pointer Classification: Unclassified Product: gcc Version: unknown Status: UNCONFIRMED Severity: enhancement Priority: P3 Component: c AssignedTo: unassigned@gcc.gnu.org ReportedBy: dcb314@hotmail.com I just tried the following C code on latest trunk snapshot 20111001 on an AMD x86_64 box. # include void f( const char * p) { if (p == 0) printf( "Hello world %s\n", p); } The compiler said nothing at all, which was a bit surprising. $ ../results/bin/gcc -g -O2 -Wall -Wextra -pedantic -c bug34.c $ OK, gcc isn't clairvoyant, but a little bit of NULL pointer tracking might be useful, to print out a useful warning message or two.