forked from organicmaps/organicmaps
Fix crash in Sloynik, when invalid link is followed.
This commit is contained in:
parent
8d574de7e0
commit
8e15e60283
1 changed files with 7 additions and 1 deletions
|
@ -248,7 +248,13 @@
|
|||
- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
|
||||
navigationType:(UIWebViewNavigationType)navigationType
|
||||
{
|
||||
string const url([[[request URL] path] UTF8String]);
|
||||
char const * urlChars = [[[request URL] path] UTF8String];
|
||||
if (!urlChars)
|
||||
{
|
||||
LOG(LWARNING, ("Strange URL: path is empty."));
|
||||
return NO;
|
||||
}
|
||||
string const url(urlChars);
|
||||
size_t const lastSlash = url.find_last_of('/');
|
||||
if (lastSlash == string::npos)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue