You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bb...@apache.org on 2019/09/23 12:56:24 UTC

[mesos] branch master updated: Added missing member initialization in `JSON::WriterProxy`.

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

bbannier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 8f769b7  Added missing member initialization in `JSON::WriterProxy`.
8f769b7 is described below

commit 8f769b71d5b8ea024c68c01962e7e0b3cbadd56f
Author: Benjamin Bannier <bb...@apache.org>
AuthorDate: Thu Sep 19 22:42:19 2019 +0200

    Added missing member initialization in `JSON::WriterProxy`.
    
    Review: https://reviews.apache.org/r/71522
---
 3rdparty/stout/include/stout/jsonify.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/3rdparty/stout/include/stout/jsonify.hpp b/3rdparty/stout/include/stout/jsonify.hpp
index e5402b7..7a239d8 100644
--- a/3rdparty/stout/include/stout/jsonify.hpp
+++ b/3rdparty/stout/include/stout/jsonify.hpp
@@ -557,7 +557,7 @@ class WriterProxy
 {
 public:
   WriterProxy(rapidjson::Writer<rapidjson::StringBuffer>* writer)
-    : writer_(writer) {}
+    : writer_(writer), type_(NULL_WRITER) {}
 
   ~WriterProxy()
   {