lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Mon, 17 Jan 2011 16:50:16 +0800
From:	Américo Wang <xiyou.wangcong@...il.com>
To:	Jeffrey Merkey <jeffmerkey@...il.com>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: [UPDATE] gcc NULL strings passed from ternary operators in
 kernel modules

On Thu, Jan 13, 2011 at 12:56:39AM -0700, Jeffrey Merkey wrote:
>might help if my examples are correct -- geez...
>
>interesting case with gcc.  The following code example:
>
>printk("%s\n", (value & 1) ? "set": "clear");
>
>will evaluate to NULL unless the ":" character has a space after
>static string declaration.
>
>this version
>
>printk("%s\n", (value & 1) ? "set" : "clear");
>
>works.
>
>go figure.   Looks like gcc assumes this case is a C++ construct of
>some sort and
>evaluates it to NULL.
>

Huh? How can gcc assume that is C++ code?!
Whitespaces definitely should not bother the code.

Which version of gcc are you using?

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ