From 5c4280404eb4ef0006cfb99976796cd449d2fd58 Mon Sep 17 00:00:00 2001 From: Ethan Tseng Date: Tue, 14 Oct 2014 11:47:03 +0800 Subject: [PATCH] Bug 1014579 - [RTSP][V2.0] Full screen mode message shows null host when open in a new tab. r=sworkman --- netwerk/protocol/rtsp/RtspHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netwerk/protocol/rtsp/RtspHandler.cpp b/netwerk/protocol/rtsp/RtspHandler.cpp index 5cff6ff5e719..09eb770fff66 100644 --- a/netwerk/protocol/rtsp/RtspHandler.cpp +++ b/netwerk/protocol/rtsp/RtspHandler.cpp @@ -40,8 +40,8 @@ RtspHandler::GetDefaultPort(int32_t *aDefaultPort) NS_IMETHODIMP RtspHandler::GetProtocolFlags(uint32_t *aProtocolFlags) { - *aProtocolFlags = URI_NORELATIVE | URI_NOAUTH | URI_INHERITS_SECURITY_CONTEXT | - URI_LOADABLE_BY_ANYONE | URI_NON_PERSISTABLE | URI_SYNC_LOAD_IS_OK; + *aProtocolFlags = URI_NORELATIVE | URI_NOAUTH | URI_LOADABLE_BY_ANYONE | + URI_NON_PERSISTABLE | URI_SYNC_LOAD_IS_OK; return NS_OK; }