https://bugzilla.redhat.com/show_bug.cgi?id=1268716



--- Comment #44 from Stuart D Gathman <[email protected]> ---
The chroot flag is a false positive: 
void Security_chroot(char* root, struct Except* eh)
{
    if (chdir(root)) {
        Except_throw(eh, "chdir(%s) -> [%s]", root, strerror(errno));
    }
    if (chroot(root)) {
        Except_throw(eh, "chroot(%s) -> [%s]", root, strerror(errno));
    }
}

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
_______________________________________________
package-review mailing list
[email protected]
https://admin.fedoraproject.org/mailman/listinfo/package-review

Reply via email to