You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by al...@apache.org on 2017/07/10 17:42:37 UTC

mesos git commit: Fixed member access issue introduced by a cherry-pick.

Repository: mesos
Updated Branches:
  refs/heads/1.1.x 915518a03 -> a08b19333


Fixed member access issue introduced by a cherry-pick.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/a08b1933
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/a08b1933
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/a08b1933

Branch: refs/heads/1.1.x
Commit: a08b19333e2fab4873bfc6f2f0e252a6414a77a1
Parents: 915518a
Author: Alexander Rukletsov <al...@apache.org>
Authored: Mon Jul 10 19:30:25 2017 +0200
Committer: Alexander Rukletsov <al...@apache.org>
Committed: Mon Jul 10 19:30:25 2017 +0200

----------------------------------------------------------------------
 3rdparty/libprocess/src/process.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/a08b1933/3rdparty/libprocess/src/process.cpp
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/src/process.cpp b/3rdparty/libprocess/src/process.cpp
index 50c081c..60f4dc2e 100644
--- a/3rdparty/libprocess/src/process.cpp
+++ b/3rdparty/libprocess/src/process.cpp
@@ -640,7 +640,7 @@ static Message* parse(Request* request)
   }
 
   // Check that URL path is present and starts with '/'.
-  if (request.url.path.find('/') != 0) {
+  if (request->url.path.find('/') != 0) {
     return nullptr;
   }