This is an automated email from the ASF dual-hosted git repository.

chhsiao pushed a commit to branch 1.6.x
in repository https://gitbox.apache.org/repos/asf/mesos.git

commit f1e71c64bb48b99a302e80bddbba0d95b08c63ee
Author: Chun-Hung Hsiao <chhs...@umich.edu>
AuthorDate: Wed Oct 10 22:14:52 2018 -0700

    Fixed protobuf map equality check in the URI disk profile adaptor.
    
    Review: https://reviews.apache.org/r/68987
---
 src/resource_provider/storage/uri_disk_profile_adaptor.cpp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/resource_provider/storage/uri_disk_profile_adaptor.cpp 
b/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
index 614590e..18493b1 100644
--- a/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
+++ b/src/resource_provider/storage/uri_disk_profile_adaptor.cpp
@@ -74,6 +74,8 @@ bool operator==(
     if (iterator->second != right.at(iterator->first)) {
       return false;
     }
+
+    ++iterator;
   }
 
   return true;

Reply via email to