You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by so...@apache.org on 2015/06/16 05:19:42 UTC

[2/5] trafficserver git commit: TS-3282: Fix uninitialized scalar CID# 1306621

TS-3282: Fix uninitialized scalar CID# 1306621


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

Branch: refs/heads/master
Commit: cb105fe08ad4c299508bf9a3a4378b78ed430c76
Parents: a620d32
Author: Phil Sorber <so...@apache.org>
Authored: Mon Jun 15 21:14:38 2015 -0600
Committer: Phil Sorber <so...@apache.org>
Committed: Mon Jun 15 21:18:28 2015 -0600

----------------------------------------------------------------------
 plugins/experimental/mp4/mp4_common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/trafficserver/blob/cb105fe0/plugins/experimental/mp4/mp4_common.h
----------------------------------------------------------------------
diff --git a/plugins/experimental/mp4/mp4_common.h b/plugins/experimental/mp4/mp4_common.h
index bd0ef94..5977e2b 100644
--- a/plugins/experimental/mp4/mp4_common.h
+++ b/plugins/experimental/mp4/mp4_common.h
@@ -59,7 +59,7 @@ class Mp4TransformContext
 {
 public:
   Mp4TransformContext(float offset, int64_t cl)
-    : total(0), tail(0), pos(0), content_length(0), parse_over(false), raw_transform(false)
+    : total(0), tail(0), pos(0), content_length(0), meta_length(0), parse_over(false), raw_transform(false)
   {
     res_buffer = TSIOBufferCreate();
     res_reader = TSIOBufferReaderAlloc(res_buffer);