I often use code along the lines of:
function GetNumber(Handle : THandle) : Integer;
begin
FLock.BeginRead;
try
if FMap.TryGetValue(Handle, Object) then
raise EArgumentException.Create('Invalid handle');
Result := Object.Number;
finally
FLock.EndRead;
end;
end;
Unfortunately the compiler gives me a warning for all these methods:
[DCC Warning] Unit.pas(1012): W1035 Return value of function 'GetNumber' might be undefined
I know this warning, but in this case I can't see any reason for it at all. Or is there a scenario that I am missing that would result in an undefined result value? I understand the warning in the case of try..except but for try..finally it does not make sense to me.
Questions:
- Is there any reason for the warning?
- How can I get rid of it (moving the
Result := Object.Numberline out of the lock is not an option, and I want to avoid writing an completely unnecessaryResult := 0line at the top of each function)
Thanks!
Result := X; // Avoid compiler warningin my code, some of them conditionally-compiled because of compiler changes between versions. Embarcadero should fix this bug because it's annoying! – Cosmin Prund Jul 4 '11 at 10:50