Can you find this Delphi coding error (part 1)?

Can you spot the error in the following Delphi code? The code consists of a typical function that returns a sum of values.

function CalcNetResult : Integer;
var
  I, Sum : Integer;
begin
  Result := GetInitialAmount;

  for I := 1 to GetNumParts do
    Inc(Sum, GetPartAmount(I));

  Inc(Result, Sum);
end;

Well, that was not too hard, was it?

Solution: The local variable Sum has not been initialized before the for-loop, and will contain a random value. The function result will not be the expected. This is all because of the way local variables are managed in memory.

Not so hard to spot! But imagine finding this problem among thousands of lines of code spread over hundreds of units! And consider also a code base that is evolving all the time, so the code must constantly be rechecked.

The good news is that with Pascal Analyzer, our popular static code analyzer, you can automatically find these and many other kinds of coding issues. This particular error above is detected by the Warnings Report, in a section WARN7 "Local variables that are referenced before they are set".

Pascal Analyzer has a total of 53 reports. Those are divided into roughly 200 sections, all providing statistics, references, errors and warnings for your code. Pascal Analyzer can be run as a standalone Windows application, or as a command-line program. The second choice is suitable if you want to integrate static code analysis with your build process.

Or use Pascal Expert, our RAD Studio plugin, to find the problems immediately while coding. Pascal Expert contains much of the same capabilities like Pascal Analyzer, and is obtainable with a discount when buying both products.

See our orders page for more details or get free evaluations from the download page.