• Dridi Boukelmoune's avatar
    Use closefd() throughout, take 2 · 6db7d750
    Dridi Boukelmoune authored
    This patch was created using Coccinelle and the following steps:
    
        $ cat >closefd.cocci <<EOF
        @@
        expression fd;
        @@
    
        - AZ(close(fd));
        + closefd(&fd);
        EOF
        $ spatch --dir . --in-place --sp-file closefd.cocci
    
    Please note that one use of AZ(close(...)) couldn't be moved to
    closefd() because of a const qualifier. There are other calls to
    close(2) that are currently not checked on purpose. They may need
    to be revisited.
    
    See: git grep -F '(void)close'
    6db7d750
vrnd.c 4.52 KB