Index: chrome_frame/urlmon_url_request.cc |
=================================================================== |
--- chrome_frame/urlmon_url_request.cc (revision 120814) |
+++ chrome_frame/urlmon_url_request.cc (working copy) |
@@ -305,7 +305,8 @@ |
BindContextInfo::FromBindContext(bind_context_, info.Receive()); |
DCHECK(info); |
GURL previously_redirected(info ? info->GetUrl() : std::wstring()); |
- if (GURL(status_text) != previously_redirected) { |
+ if (previously_redirected.is_valid() && |
jam
2012/02/08 18:51:12
i think this change slipped into this cl by accide
|
+ GURL(status_text) != previously_redirected) { |
DVLOG(1) << __FUNCTION__ << me() << "redirect from " << url() |
<< " to " << status_text; |
// Fetch the redirect status as they aren't all equal (307 in particular |