You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by am...@apache.org on 2019/02/19 21:02:33 UTC

[trafficserver] branch master updated: Build fix: Fix build issue for -O3 on CI.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0781e91  Build fix: Fix build issue for -O3 on CI.
0781e91 is described below

commit 0781e91fc7af2ba626154382b2e2a6853906517b
Author: Alan M. Carroll <am...@apache.org>
AuthorDate: Fri Feb 15 11:21:35 2019 -0600

    Build fix: Fix build issue for -O3 on CI.
---
 lib/tsconfig/TsValue.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/tsconfig/TsValue.h b/lib/tsconfig/TsValue.h
index 59d7d4e..fbbf473 100644
--- a/lib/tsconfig/TsValue.h
+++ b/lib/tsconfig/TsValue.h
@@ -217,7 +217,7 @@ namespace detail {
     ValueType getType() const;
   protected:
     ValueType _type;      ///< Type of value.
-    ValueIndex _parent;   ///< Table index of parent value.
+    ValueIndex _parent = 0;   ///< Table index of parent value.
     ConstBuffer _text;    ///< Text of value (if scalar).
     ConstBuffer _name;    ///< Local name of value, if available.
     size_t _local_index;  ///< Index among siblings.