CID 1108421: BUrl constructor missing initializers.

This commit is contained in:
Adrien Destugues 2014-06-06 08:04:16 +02:00
parent 76207e934d
commit 4e14963b73

View File

@ -87,7 +87,12 @@ BUrl::BUrl(const BUrl& base, const BString& location)
fPort(0),
fPath(),
fRequest(),
fAuthorityValid(false),
fUserInfoValid(false),
fHasUserName(false),
fHasPassword(false),
fHasHost(false),
fHasPort(false),
fHasFragment(false)
{
// This implements the algorithm in RFC3986, Section 5.2.