Skip to content
This repository was archived by the owner on Apr 7, 2021. It is now read-only.
This repository was archived by the owner on Apr 7, 2021. It is now read-only.

bug in reorder.c #3

@StevenEker

Description

@StevenEker

reorder.c:1629
if (!bdd_reorder_ready)
return;

Here bdd_reorder_ready() is a function so bdd_reorder_ready is a function address which is trivially true. I believe the code should be:

if (!(bdd_reorder_ready()))
return;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions