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:
parent
65b30ea3c1
commit
caac43e662
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user