Fixed missing initialization of fBlock in one of the constructors of CachedBlock.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5107 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-10-21 04:25:20 +00:00
parent 65b30ea3c1
commit caac43e662

View File

@ -54,7 +54,8 @@ CachedBlock::CachedBlock(Volume &volume)
CachedBlock::CachedBlock(Volume &volume, block_run run)
:
fVolume(volume),
fBlockNumber(-1LL)
fBlockNumber(-1LL),
fBlock(NULL)
{
SetTo(run);
}