Do you look for anything in particular, or just read the code carefully and just find what you find?
|
|
|||||||
|
|
|
Nothing. I just make sure to have enough comments (and not too many) It's no shame if someone in the review finds a "better" way, or a minor bug, as long as the code is designed well. It's not about getting "caught" making a mistake, it's about the best code you can write. |
||
|
|
|
|
It would help if the group working togheter came up with a common checklist of things to look out for. |
||
|
|
|
|
I don't generally put too much effort into reviewing someone's algorithm. That stuff should have been vetted before s/he got started on the code in the first place. |
||
|
|
|
|
I normally check for proper resource cleanup and sensible symbol naming. I actually prefer zero attempt at comments over poor use of comments, though beneficial uses will win praise. I also know this is highly subjective, and some of what I consider to be antipatterns have been enforced over my objections as a coding standard at some sites. Good uses:
Bad uses:
|
||
|
|
|
|
I am of the opinion that if you are actually reviewing code, you cant just use a checklist to do it. You need to get down deep into every nook and cranny and ask the question, could this have been done better. I use tools and tests to check for resources leaking, so human eyes are of little use there. the only broad checks I have are, code duplication and overuse of inheritance. |
||
|
|
|
|
It depends on the goal of the review. Sometimes the goal is to find bugs. (Maybe always?) Sometimes it's a security audit, in which case you might be "blind" to certain kinds of problems in the interest of getting through more code more quickly. Or perhaps it's a review for a certain type of problem such as a race condition or incorrect error clean-up. That kind of review can be fast and very effective. Sometimes the goal is to teach a newbie basic programming skills, or bring a new hire into the fold, showing her where all the acorns are buried. |
||
|
|
|
|
Most (almost all?) of the code reviews I do are security focused, however most of these principles - and most of the details - are still applicable.
As to specific things I look for:
I said it's usually security for me, didn't I? ;-) This is by far not a complete list, but this should give you a feel for the types of issues to look for - dependant on the purpose and focus of the review. |
||
|
|
