From c3894bc2d5d5eabdc913d88d1fedc552fef074a5 Mon Sep 17 00:00:00 2001 From: Vinson Lee Date: Sat, 4 Aug 2012 14:37:33 -0700 Subject: [PATCH] gallivm: Add constructor for raw_debug_ostream. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes uninitialized scalar field defect reported by Coverity. Signed-off-by: Vinson Lee Reviewed-by: José Fonseca --- src/gallium/auxiliary/gallivm/lp_bld_debug.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp index 93505f3da45..af50fcc1425 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp +++ b/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp @@ -81,8 +81,12 @@ lp_check_alignment(const void *ptr, unsigned alignment) class raw_debug_ostream : public llvm::raw_ostream { +private: uint64_t pos; +public: + raw_debug_ostream() : pos(0) { } + void write_impl(const char *Ptr, size_t Size); #if HAVE_LLVM >= 0x207 -- 2.11.0