# HG changeset patch # User Benjamin Golinvaux # Date 1580134996 -3600 # Node ID 5e45322c77249573661bb4f45f035d000db446fc # Parent 6128e1823e49aa106a00a41635d96d2ce3457f05 Fixed errors related to previous fingerprint change diff -r 6128e1823e49 -r 5e45322c7724 Framework/Oracle/WebAssemblyOracle.cpp --- a/Framework/Oracle/WebAssemblyOracle.cpp Mon Jan 27 15:13:27 2020 +0100 +++ b/Framework/Oracle/WebAssemblyOracle.cpp Mon Jan 27 15:23:16 2020 +0100 @@ -108,11 +108,11 @@ class WebAssemblyOracle::FetchContext : public boost::noncopyable { private: - Emitter emitter_; - const IObserver& receiver_; - std::auto_ptr command_; - std::string expectedContentType_; - std::string receiverFingerprint_; + Emitter emitter_; + const IObserver& receiver_; + std::auto_ptr command_; + std::string expectedContentType_; + int64_t receiverFingerprint_; public: FetchContext(WebAssemblyOracle& oracle, @@ -223,7 +223,7 @@ if (context->GetReceiver().DoesFingerprintLookGood()) { callHandler = true; - std::string currentFingerprint(context->GetReceiver().GetFingerprint()); + int64_t currentFingerprint(context->GetReceiver().GetFingerprint()); LOG(TRACE) << "SuccessCallback for object at address (" << std::hex << &(context->GetReceiver()) << std::dec