Thread (1 message) 1 message, 1 author, 2016-06-15

Re: [PATCH] CodingGuidelines: Add a note to avoid assignments inside if()

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:44:38

Thanks.

FYI, recently in a nearby mailing list, we had this gem:

    From: Linus Torvalds [off-list ref]
    Subject: Re: [PATCH 3/5] isdn: fix integer as NULL pointer warning
    Date: Fri, 23 May 2008 08:08:57 -0700 (PDT)
    Message-ID: [off-list ref]

    ...
    >  	len += sprintf(page+len, "%-16s %s\n", "type", s);
    > -	if ((s = cinfo->version[VER_DRIVER]) != 0)
    > +	if ((s = cinfo->version[VER_DRIVER]) != NULL)
    >  		len += sprintf(page+len, "%-16s %s\n", "ver_driver", s);

    For thigns like this (ie testing an assignment), I personally much prefer

            s = cinfo->version[VER_DRIVER];
            if (s)
                    len += sprintf(page+len, "%-16s %s\n", "ver_driver", s);

    over the uglier and unreadable version.

    IOW, testing assignments is good only when:

     - you have to do it because of syntax (ie notably in a "while()" loop)

     - there's some reason you want it to be a single statement (eg doing a 
       macro or other thing)

     - of the assignment is really simple, and the test is not against NULL or 
       zero.

    The reason for that "the test is not against NULL or zero" is that testing 
    for NULL and 0 is better done with just a "if (x)", and in an assignment 
    that just means either (a) a incomprehensible extra parenthesis just to 
    shut the compiler up or (b) changing the simple test into a stupid test 
    (ie doing "if (x != NULL)").

    (b) is much preferable to (a), but just doing it as two statements is 
    much preferable to either!
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help