You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by li...@apache.org on 2023/01/17 01:56:13 UTC

[doris] branch master updated: [Compile](lzo) fix lzo decompressor compiler error (#15956)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0ab0479633 [Compile](lzo) fix lzo decompressor compiler error (#15956)
0ab0479633 is described below

commit 0ab0479633985520e23803bcc69da67e4555cc42
Author: HappenLee <ha...@hotmail.com>
AuthorDate: Tue Jan 17 09:56:07 2023 +0800

    [Compile](lzo) fix lzo decompressor compiler error (#15956)
---
 be/src/exec/decompressor.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/be/src/exec/decompressor.h b/be/src/exec/decompressor.h
index 0b10b874fc..a9e6ef7b02 100644
--- a/be/src/exec/decompressor.h
+++ b/be/src/exec/decompressor.h
@@ -150,7 +150,7 @@ public:
 private:
     friend class Decompressor;
     LzopDecompressor()
-            : Decompressor(CompressType::LZOP), _header_info({0}), _is_header_loaded(false) {}
+            : Decompressor(CompressType::LZOP), _header_info(), _is_header_loaded(false) {}
     Status init() override;
 
 private:


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org