In message <[EMAIL PROTECTED]> "Jacques A. Vidrine" writes:
: I hate to give up a line for
: 
:       if (data)
:               free(data);
: 
: but neither do I care for ``if (data) free(data);''.  I guess if I 
: were writing several statements like that in a single file, I would
: consider the macro route (e.g. xfree).

No offense, but this strikes me as a premature, sub-micro
optimization.  I doubt that you could measure any difference between
        if (foo) free(foo);
and     free(foo);

in the real world.

Warner


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to