Fix crash in Sloynik, when invalid link is followed.

This commit is contained in:
Yury Melnichek 2011-03-10 13:56:32 +01:00 committed by Alex Zolotarev
parent 8d574de7e0
commit 8e15e60283

View file

@ -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)
{