This is an automated email from the git hooks/post-receive script.
richard pushed a commit to branch tor-browser-91.10.0esr-11.5-1 in repository tor-browser.
commit 7ce44b924a518413bb7f539c664800f381db01b3 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Tue Feb 22 18:03:02 2022 +0100
Fixed a Firefox include problem
Firefox code missed some includes, but Mozilla devs did not notice because of the unified build mechanism. They have already been fixed in repid release, but not in ESR. See https://bugzilla.mozilla.org/show_bug.cgi?id=1733356 for further information. --- netwerk/dns/TRR.cpp | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/netwerk/dns/TRR.cpp b/netwerk/dns/TRR.cpp index 2ee7110f9e2b1..4b6832af96ad7 100644 --- a/netwerk/dns/TRR.cpp +++ b/netwerk/dns/TRR.cpp @@ -6,6 +6,7 @@
#include "DNS.h" #include "DNSUtils.h" +#include "ODoH.h" #include "nsCharSeparatedTokenizer.h" #include "nsContentUtils.h" #include "nsHttpHandler.h" @@ -20,6 +21,7 @@ #include "nsIUploadChannel2.h" #include "nsIURIMutator.h" #include "nsNetUtil.h" +#include "nsQueryObject.h" #include "nsStringStream.h" #include "nsThreadUtils.h" #include "nsURLHelper.h"