Fix FeatureType::ReadOffsets.

Initialize offsets with -1 for invisible scales.
This commit is contained in:
vng 2011-05-16 16:42:58 +03:00 committed by Alex Zolotarev
parent 78941bf8a6
commit 8afd924fbc
4 changed files with 24 additions and 0 deletions

View file

@ -869,6 +869,9 @@ void FeatureType::ReadOffsets(ArrayByteSource & src, uint8_t mask, offsets_t & o
offsets[index++] = (mask & 0x01) ? ReadVarUint<uint32_t>(src) : kInvalidOffset;
mask = mask >> 1;
}
while (index < offsets.size())
offsets[index++] = kInvalidOffset;
}
void FeatureType::ParseAll(int scale) const

View file

@ -1081,6 +1081,7 @@ void FrameWork<TModel>::AddRedrawCommandSure()
void FrameWork<TModel>::Search(string const & text, SearchCallbackT callback) const
{
threads::MutexGuard lock(m_modelSyn);
SearchProcessor doClass(text, callback);
m_model.ForEachFeatureWithScale(m2::RectD(MercatorBounds::minX,
MercatorBounds::minY,

View file

@ -0,0 +1,19 @@
#include "../../base/SRC_FIRST.hpp"
#include "../../testing/testing.hpp"
#include "../../indexer/features_vector.hpp"
#include "../../platform/platform.hpp"
UNIT_TEST(DebugFeaturesTest_World_6941024)
{
FilesContainerR rCont(GetPlatform().ReadPathForFile("World.mwm"));
FeaturesVector vec(rCont);
FeatureType f;
vec.Get(6941024, f);
f.GetLimitRect(-1);
}

View file

@ -23,3 +23,4 @@ SOURCES += \
../../testing/testingmain.cpp \
navigator_test.cpp \
map_foreach_test.cpp \
debug_features_test.cpp \