forked from organicmaps/organicmaps
Do not match invalid coordinates without decimal dot.
This commit is contained in:
parent
11f1b67f28
commit
4d32551e1f
2 changed files with 5 additions and 1 deletions
|
@ -112,7 +112,7 @@ namespace url_scheme
|
|||
|
||||
public:
|
||||
LatLonParser(Info & info)
|
||||
: m_regexp("-?\\d+\\.?\\d*, *-?\\d+\\.?\\d*")
|
||||
: m_regexp("-?\\d+\\.{1}\\d*, *-?\\d+\\.{1}\\d*")
|
||||
, m_info(info)
|
||||
, m_latPriority(-1)
|
||||
, m_lonPriority(-1)
|
||||
|
|
|
@ -33,6 +33,10 @@ UNIT_TEST(ProcessURL_Smoke)
|
|||
TEST(info.IsValid(), ());
|
||||
TEST_ALMOST_EQUAL_ULPS(info.m_lat, 32.22, ());
|
||||
TEST_ALMOST_EQUAL_ULPS(info.m_lon, 123.33, ());
|
||||
|
||||
info.Reset();
|
||||
ParseGeoURL("model: iphone 7,1", info);
|
||||
TEST(!info.IsValid(), ());
|
||||
}
|
||||
|
||||
UNIT_TEST(ProcessURL_Instagram)
|
||||
|
|
Loading…
Add table
Reference in a new issue