Re: [hwloc-devel] want 1.0rc4? On 03/05/10 09:57, Jeff Squyres wrote:
> 1.0rc4 is up.
Running coccicheck on 1.0rc4 flags up this construct, I presume
as an ambiguous construction:
if (!topology->flags & HWLOC_TOPOLOGY_FLAG_WHOLE_SYSTEM) {
That's at line 1518 of src/topology.c in hwloc_discover(). The
check file simply says:
// !x&y combines boolean negation with bitwise and
It's also flagged some unchecked malloc()'s in various bits:
line 41 of src/misc.c in hwloc_snprintf():
str = malloc(size);