Sometimes code can be so complex a normal code review isn't sufficient to convince all the reviewers that some code is "correct", i.e. it will always work. If it can be coded in a clearer way, then that's fine, but sometimes you're really cool, really fast, optimisation is just too much for mere mortals, even with a comment block bigger than the code.
This is where the code walkthrough comes in. For most people always walking all of the code would be a waste of time, but walking through certain parts can be very beneficial.
My team has had some success with the following method: first do a normal code review - for us this means one or more reviewers go through the new code or change sets and prepares his comments and questions. Then we have a discussion, in person or via email, during which any reviewer can request a walkthrough, usually of a specific section of code or action. If it's a proper review meeting with multiple reviewers then we'll usually finish that first.
Later, we sit down in front of the same screen/proectionscreen/projection, and fire up the program using gdb. We trigger the code in question and actually go through the running code line by line, forcing error conditions if necessary. Usually the reviewer is in control (at the keyboard), asking questions, checking variable values etc. It can be time consuming, but on the tricky bits it's usually worth it.
NB: Using VNC and the phone is almost as good too.
Only when the reviewer is happy with the code does he sign it off. That might mean a walkthough, additional comments, adding more unit tests, whatever.
