X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=Source%2FWebCore%2Fplatform%2Fnetwork%2FFormData.cpp;h=f58174621982646b6ebff4d8816802c421328119;hp=9665bbd1c4d8f527eb20d833f82fdb9de6844af6;hb=3db55418113028618885f4476bfac48dd7a7c57f;hpb=943d8145955e01945e6c0cda96ec5b44823c0d89 diff --git a/Source/WebCore/platform/network/FormData.cpp b/Source/WebCore/platform/network/FormData.cpp index 9665bbd..f581746 100644 --- a/Source/WebCore/platform/network/FormData.cpp +++ b/Source/WebCore/platform/network/FormData.cpp @@ -43,6 +43,7 @@ inline FormData::FormData() : m_identifier(0) , m_hasGeneratedFiles(false) , m_alwaysStream(false) + , m_containsPasswordData(false) { } @@ -52,6 +53,7 @@ inline FormData::FormData(const FormData& data) , m_identifier(data.m_identifier) , m_hasGeneratedFiles(false) , m_alwaysStream(false) + , m_containsPasswordData(data.m_containsPasswordData) { // We shouldn't be copying FormData that hasn't already removed its generated files // but just in case, make sure the new FormData is ready to generate its own files.